Skip to content
Snippets Groups Projects
Commit 7d386378 authored by AndreyL ProductEngine's avatar AndreyL ProductEngine
Browse files

MAINT-7206 Fixed crash on doubleclick deselecting last mute type from the context menu

parent 80569179
No related branches found
No related tags found
No related merge requests found
......@@ -341,6 +341,11 @@ void LLBlockList::onCustomAction(const LLSD& userdata)
bool LLBlockList::isMenuItemChecked(const LLSD& userdata)
{
LLBlockedListItem* item = getBlockedItem();
if (!item)
{
return false;
}
const std::string command_name = userdata.asString();
if ("block_voice" == command_name)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment