名前の変更と変更不要の差分をロールバック

This commit is contained in:
samunohito 2024-06-12 07:16:52 +09:00
parent a56c680136
commit b5ccf1b484
4 changed files with 20 additions and 42 deletions

View file

@ -63,7 +63,7 @@ class HybridTimelineChannel extends Channel {
(note.channelId == null && Object.hasOwn(this.following, note.userId)) ||
(note.channelId == null && (note.user.host == null && note.visibility === 'public')) ||
(note.channelId != null && this.followingChannels.has(note.channelId)) ||
(note.channelId != null && !isChannelRelated(note, this.mutingChannels))
(note.channelId != null && isChannelRelated(note, this.mutingChannels))
)) return;
if (note.visibility === 'followers') {