diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2020-03-28 18:07:41 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2020-03-28 18:07:41 +0900 |
| commit | 614a1d74ddf388dcb82f69722c96696ad530602d (patch) | |
| tree | faf2d14d1d82ea321080ebb677d8c402460c9a5b /src/services/note/create.ts | |
| parent | Add i/apps private API (diff) | |
| download | misskey-614a1d74ddf388dcb82f69722c96696ad530602d.tar.gz misskey-614a1d74ddf388dcb82f69722c96696ad530602d.tar.bz2 misskey-614a1d74ddf388dcb82f69722c96696ad530602d.zip | |
Resolve #6192
Diffstat (limited to 'src/services/note/create.ts')
| -rw-r--r-- | src/services/note/create.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/services/note/create.ts b/src/services/note/create.ts index 50586e8bc7..60a5a5e69d 100644 --- a/src/services/note/create.ts +++ b/src/services/note/create.ts @@ -78,7 +78,8 @@ class NotificationManager { // 通知される側のユーザーが通知する側のユーザーをミュートしていない限りは通知する if (!mentioneesMutedUserIds.includes(this.notifier.id)) { - createNotification(x.target, this.notifier.id, x.reason, { + createNotification(x.target, x.reason, { + notifierId: this.notifier.id, noteId: this.note.id }); } |