This commit is contained in:
syuilo 2020-02-26 07:56:32 +09:00
parent f6c376f20d
commit 7121bdef6b
3 changed files with 5 additions and 5 deletions

View file

@ -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);
}