1
0

fix: boosts not being muted when muting thread

Closes #347
This commit is contained in:
Marie
2024-01-25 19:39:41 +01:00
parent c1d38b02d7
commit e89f4ff3c8
+10 -1
View File
@@ -816,7 +816,16 @@ export class NoteCreateService implements OnApplicationShutdown {
// Notify
if (data.renote.userHost === null) {
nm.push(data.renote.userId, type);
const isThreadMuted = await this.noteThreadMutingsRepository.exist({
where: {
userId: data.renote.userId,
threadId: data.renote.threadId ?? data.renote.id,
},
});
if (!isThreadMuted) {
nm.push(data.renote.userId, type);
}
}
// Publish event