fix mute overrides for bulk-disabling silence

This commit is contained in:
Hazelnoot 2025-08-13 00:27:55 -04:00
parent 85ca2269e4
commit f9a45238e9
4 changed files with 13 additions and 5 deletions

View file

@ -58,12 +58,13 @@ function onExpandNote(note: Misskey.entities.Note) {
user: {
[note.user.id]: {
userMandatoryCW: null,
isSilenced: false,
userSilenced: false,
},
},
instance: {
[note.user.host ?? '']: {
instanceMandatoryCW: null,
instanceSilenced: false,
},
},
});

View file

@ -89,12 +89,13 @@ function onExpandNote(note: Misskey.entities.Note) {
user: {
[note.user.id]: {
userMandatoryCW: null,
isSilenced: false,
userSilenced: false,
},
},
instance: {
[note.user.host ?? '']: {
instanceMandatoryCW: null,
instanceSilenced: false,
},
},
});

View file

@ -60,12 +60,13 @@ function onExpandNote(note: Misskey.entities.Note) {
user: {
[note.user.id]: {
userMandatoryCW: null,
isSilenced: false,
userSilenced: false,
},
},
instance: {
[note.user.host ?? '']: {
instanceMandatoryCW: null,
instanceSilenced: false,
},
},
});