Skip to content
Snippets Groups Projects
Commit 445e87ed authored by Demian Katz's avatar Demian Katz
Browse files

Minor fix related to previous commit.

parent ea4946fe
Branches
Tags
No related merge requests found
......@@ -751,7 +751,7 @@ class AjaxController extends AbstractBase
$tagList[] = [
'tag' => $tag->tag,
'cnt' => $tag->cnt,
'is_me' => $tag->is_me == 1 ? true : false
'is_me' => !empty($tag->is_me)
];
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment