refactor: Rename function
This commit is contained in:
parent
0efa969a15
commit
a8adc46f3b
9 changed files with 17 additions and 17 deletions
15
src/misc/is-muted-user-related.ts
Normal file
15
src/misc/is-muted-user-related.ts
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
export function isMutedUserRelated(note: any, mutedUserIds: string[]): boolean {
|
||||
if (mutedUserIds.includes(note.userId)) {
|
||||
return true;
|
||||
}
|
||||
|
||||
if (note.reply != null && mutedUserIds.includes(note.reply.userId)) {
|
||||
return true;
|
||||
}
|
||||
|
||||
if (note.renote != null && mutedUserIds.includes(note.renote.userId)) {
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue