mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-27 12:27:29 -07:00
14148f6c4a
Resolve #7779
15 lines
330 B
TypeScript
15 lines
330 B
TypeScript
export function isMutedUserRelated(note: any, mutedUserIds: Set<string>): boolean {
|
|
if (mutedUserIds.has(note.userId)) {
|
|
return true;
|
|
}
|
|
|
|
if (note.reply != null && mutedUserIds.has(note.reply.userId)) {
|
|
return true;
|
|
}
|
|
|
|
if (note.renote != null && mutedUserIds.has(note.renote.userId)) {
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|