summaryrefslogtreecommitdiffstats
path: root/extensions/BugModal/lib/ActivityStream.pm
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/BugModal/lib/ActivityStream.pm')
-rw-r--r--extensions/BugModal/lib/ActivityStream.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/BugModal/lib/ActivityStream.pm b/extensions/BugModal/lib/ActivityStream.pm
index 0bd88e623..86fa6bb3b 100644
--- a/extensions/BugModal/lib/ActivityStream.pm
+++ b/extensions/BugModal/lib/ActivityStream.pm
@@ -167,7 +167,7 @@ sub _add_comments_to_stream {
next if $comment->type == CMT_HAS_DUPE;
my $author_id = $comment->author->id;
next if $comment->is_private && !($user->is_insider || $user->id == $author_id);
- next if $comment->body eq '' && ($comment->work_time - 0) != 0 && !$user->is_timetracker;
+ next if $comment->body eq '' && ($comment->work_time - 0) != 0 && $user->is_timetracker;
# treeherder is so spammy we hide its comments by default
if ($author_id == $treeherder_id) {