mirror of
https://github.com/misskey-dev/misskey.git
synced 2024-12-19 07:10:28 +01:00
16 lines
305 B
TypeScript
16 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;
|
||
|
}
|