re-instate "followed users from muted instances are not muted"
This commit is contained in:
parent
4fe8a26081
commit
76a4ebae8a
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ export default abstract class Channel {
|
||||||
*/
|
*/
|
||||||
protected isNoteMutedOrBlocked(note: Packed<'Note'>): boolean {
|
protected isNoteMutedOrBlocked(note: Packed<'Note'>): boolean {
|
||||||
// 流れてきたNoteがインスタンスミュートしたインスタンスが関わる
|
// 流れてきた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がミュートしているユーザーが関わる
|
// 流れてきたNoteがミュートしているユーザーが関わる
|
||||||
if (isUserRelated(note, this.userIdsWhoMeMuting)) return true;
|
if (isUserRelated(note, this.userIdsWhoMeMuting)) return true;
|
||||||
|
|
Loading…
Reference in a new issue