A few fixes to ensure threads show up as often as possible

This commit is contained in:
Paul Frazee
2023-03-21 13:47:17 -05:00
parent b542f0f7f8
commit eab855ffff
2 changed files with 6 additions and 4 deletions
-1
View File
@@ -200,7 +200,6 @@ export class FeedSliceModel {
get isThread() {
return (
this.items.length > 1 &&
!this.items[0].reply &&
this.items.every(
item => item.post.author.did === this.items[0].post.author.did,
)