refactor: Rename function

This commit is contained in:
syuilo
2020-07-28 09:36:43 +09:00
parent 0efa969a15
commit a8adc46f3b
9 changed files with 17 additions and 17 deletions

View File

@ -2,7 +2,7 @@ import { Antenna } from '../models/entities/antenna';
import { Note } from '../models/entities/note';
import { AntennaNotes, Mutings, Notes } from '../models';
import { genId } from '../misc/gen-id';
import shouldMuteThisNote from '../misc/should-mute-this-note';
import { isMutedUserRelated } from '../misc/is-muted-user-related';
import { ensure } from '../prelude/ensure';
import { publishAntennaStream, publishMainStream } from './stream';
import { User } from '../models/entities/user';
@ -39,7 +39,7 @@ export async function addNoteToAntenna(antenna: Antenna, note: Note, noteUser: U
_note.renote = await Notes.findOne(note.renoteId).then(ensure);
}
if (shouldMuteThisNote(_note, mutings.map(x => x.muteeId))) {
if (isMutedUserRelated(_note, mutings.map(x => x.muteeId))) {
return;
}