Merge branch 'develop' into ed25519

This commit is contained in:
tamaina
2024-07-17 15:10:45 +09:00
263 changed files with 9833 additions and 6425 deletions

View File

@@ -4,6 +4,10 @@
*/
export function isUserRelated(note: any, userIds: Set<string>, ignoreAuthor = false): boolean {
if (!note) {
return false;
}
if (userIds.has(note.userId) && !ignoreAuthor) {
return true;
}