re-instate "followed users from muted instances are not muted"

This commit is contained in:
dakkar 2024-04-25 11:31:46 +01:00
parent 4fe8a26081
commit 76a4ebae8a

View file

@ -63,7 +63,7 @@ export default abstract class Channel {
*/
protected isNoteMutedOrBlocked(note: Packed<'Note'>): boolean {
// 流れてきたNoteがインスタンスミュートしたインスタンスが関わる
if (isInstanceMuted(note, new Set<string>(this.userProfile?.mutedInstances ?? []))) return true;
if (isInstanceMuted(note, new Set<string>(this.userProfile?.mutedInstances ?? [])) && !this.following[note.userId]) return true;
// 流れてきたNoteがミュートしているユーザーが関わる
if (isUserRelated(note, this.userIdsWhoMeMuting)) return true;