Thread viewer for Bluesky
14
fork

Configure Feed

Select the types of activity you want to include in your feed.

tweaked hidden comment detection logic

+2 -2
+2 -2
models.js
··· 345 345 get hasMoreReplies() { 346 346 let shouldHaveMoreReplies = (this.replyCount !== undefined && this.replyCount > this.replies.length); 347 347 348 - return shouldHaveMoreReplies && (this.replies.length === 0) && (this.level !== undefined && this.level > 2); 348 + return shouldHaveMoreReplies && (this.replies.length === 0) && (this.level !== undefined && this.level > 4); 349 349 } 350 350 351 351 /** @returns {boolean} */ 352 352 get hasHiddenReplies() { 353 353 let shouldHaveMoreReplies = (this.replyCount !== undefined && this.replyCount > this.replies.length); 354 354 355 - return shouldHaveMoreReplies && (this.replies.length > 0 || (this.level !== undefined && this.level <= 2)); 355 + return shouldHaveMoreReplies && (this.replies.length > 0 || (this.level !== undefined && this.level <= 4)); 356 356 } 357 357 358 358 /** @returns {number} */