1
1
mirror of https://github.com/kokonect-link/cherrypick synced 2024-11-23 14:46:44 +09:00
This commit is contained in:
NoriDev 2024-11-21 11:11:07 +09:00
parent b1b157e3a3
commit 021f368f20

View File

@ -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;