summaryrefslogtreecommitdiff
path: root/internal/visibility/home_timeline.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/visibility/home_timeline.go')
-rw-r--r--internal/visibility/home_timeline.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/visibility/home_timeline.go b/internal/visibility/home_timeline.go
index 1f61df916..e3af03d83 100644
--- a/internal/visibility/home_timeline.go
+++ b/internal/visibility/home_timeline.go
@@ -98,7 +98,7 @@ func (f *Filter) isStatusHomeTimelineable(ctx context.Context, owner *gtsmodel.A
var (
next *gtsmodel.Status
- oneAuthor bool
+ oneAuthor = true // Assume one author until proven otherwise.
included bool
converstn bool
)
@@ -149,7 +149,7 @@ func (f *Filter) isStatusHomeTimelineable(ctx context.Context, owner *gtsmodel.A
}
if oneAuthor {
- // Check if this is a single-author status thread.
+ // Check if this continues to be a single-author thread.
oneAuthor = (next.AccountID == status.AccountID)
}
}