mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-02-05 22:27:14 -07:00
7 lines
444 B
TypeScript
7 lines
444 B
TypeScript
export function isUserRelated(note: any, ids: Set<string>): boolean {
|
|
if (ids.has(note.userId)) return true; // note author is muted
|
|
if (note.mentions?.some((user: string) => ids.has(user))) return true; // any of mentioned users are muted
|
|
if (note.reply && isUserRelated(note.reply, ids)) return true; // also check reply target
|
|
if (note.renote && isUserRelated(note.renote, ids)) return true; // also check renote target
|
|
return false;
|
|
}
|