Skip to content

Commit

Permalink
enhance 91c07eb
Browse files Browse the repository at this point in the history
  • Loading branch information
noridev committed Nov 21, 2024
1 parent b1b157e commit 021f368
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ class BubbleTimelineChannel extends Channel {
if (this.withFiles && (note.fileIds == null || note.fileIds.length === 0)) return;
if (this.withCats && (note.user.isCat == null || note.user.isCat === false)) return;
if (!this.withBots && note.user.isBot) return;
if (this.instance.bubbleInstances == null) return;

if (!(note.user.host != null && this.instance.bubbleInstances.includes(note.user.host) && note.visibility === 'public' )) return;

Expand Down

0 comments on commit 021f368

Please sign in to comment.