mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-05-02 02:45:55 +02:00
16 lines
330 B
TypeScript
16 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;
|
|
}
|