aboutsummaryrefslogtreecommitdiffstats
path: root/lib/threadbuilder.go
diff options
context:
space:
mode:
Diffstat (limited to 'lib/threadbuilder.go')
-rw-r--r--lib/threadbuilder.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/threadbuilder.go b/lib/threadbuilder.go
index 1f2d72c6..63ae80d3 100644
--- a/lib/threadbuilder.go
+++ b/lib/threadbuilder.go
@@ -205,7 +205,7 @@ func (builder *ThreadBuilder) RebuildUids(threads []*types.Thread, inverse bool)
t.Deleted = stored.Deleted
}
builder.threadMap[t.Uid] = t
- if t.Deleted || t.Hidden {
+ if t.Deleted || t.Hidden != 0 {
return nil
}
threaduids = append(threaduids, t.Uid)