Skip to content
Snippets Groups Projects
Commit 66a9db4b authored by andreykproductengine's avatar andreykproductengine
Browse files

MAINT-7225 MAC build fix

parent 4261f6ee
No related branches found
No related tags found
No related merge requests found
......@@ -220,7 +220,7 @@ void LLBlockList::refresh()
else if(mActionType == REMOVE)
{
if ((mute.mID.notNull() && selected.isUUID() && selected.asUUID() == mute.mID)
|| mute.mID.isNull() && selected.isString() && selected.asString() == mute.mName)
|| (mute.mID.isNull() && selected.isString() && selected.asString() == mute.mName))
{
// we are going to remove currently selected item, so select next item and save the selection to restore it
if (!selectNextItemPair(false, true))
......
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