2023-07-27 05:31:52 +00:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2022-06-27 12:48:10 +00:00
|
|
|
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;
|
|
|
|
}
|