mirror of
https://activitypub.software/TransFem-org/Sharkey
synced 2024-12-04 19:57:26 +00:00
15 lines
305 B
TypeScript
15 lines
305 B
TypeScript
export function isUserRelated(note: any, userIds: Set<string>): boolean {
|
|
if (userIds.has(note.userId)) {
|
|
return true;
|
|
}
|
|
|
|
if (note.reply != null && userIds.has(note.reply.userId)) {
|
|
return true;
|
|
}
|
|
|
|
if (note.renote != null && userIds.has(note.renote.userId)) {
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|