Refactor
This commit is contained in:
parent
f6c376f20d
commit
7121bdef6b
3 changed files with 5 additions and 5 deletions
|
@ -30,7 +30,7 @@ import { isDuplicateKeyValueError } from '../../misc/is-duplicate-key-value-erro
|
|||
import { ensure } from '../../prelude/ensure';
|
||||
import { checkHitAntenna } from '../../misc/check-hit-antenna';
|
||||
import { addNoteToAntenna } from '../add-note-to-antenna';
|
||||
import countSameRenotes from '../count-same-renotes';
|
||||
import { countSameRenotes } from '../../misc/count-same-renotes';
|
||||
|
||||
type NotificationType = 'reply' | 'renote' | 'quote' | 'mention';
|
||||
|
||||
|
@ -237,7 +237,7 @@ export default async (user: User, data: Option, silent = false) => new Promise<N
|
|||
saveReply(data.reply, note);
|
||||
}
|
||||
|
||||
//この投稿を除く指定したユーザーによる指定したノートのリノートが存在しないとき
|
||||
// この投稿を除く指定したユーザーによる指定したノートのリノートが存在しないとき
|
||||
if (data.renote && (await countSameRenotes(user.id, data.renote.id, note.id) === 0)) {
|
||||
incRenoteCount(data.renote);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue