mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-13 08:53:08 +02:00
16 lines
542 B
TypeScript
16 lines
542 B
TypeScript
|
import { Packed } from "./schema";
|
||
|
|
||
|
export function isInstanceMuted(note: Packed<'Note'>, mutedInstances: Set<string>): boolean {
|
||
|
if (mutedInstances.has(note?.user?.host ?? '')) return true;
|
||
|
if (mutedInstances.has(note?.reply?.user?.host ?? '')) return true;
|
||
|
if (mutedInstances.has(note?.renote?.user?.host ?? '')) return true;
|
||
|
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
export function isUserFromMutedInstance(notif: Packed<'Notification'>, mutedInstances: Set<string>): boolean {
|
||
|
if (mutedInstances.has(notif?.user?.host ?? '')) return true;
|
||
|
|
||
|
return false;
|
||
|
}
|