fix: 投稿通知がオンでもダイレクト投稿はユーザーに通知されないように (#12263)
* fix: 投稿通知がオンでもダイレクト投稿はユーザーに通知されないように * Update CHANGELOG.md
This commit is contained in:
parent
e2cac3d949
commit
28e394eddc
2 changed files with 8 additions and 5 deletions
|
@ -22,6 +22,7 @@
|
||||||
|
|
||||||
### Server
|
### Server
|
||||||
- Fix: トークンのないプラグインをアンインストールするときにエラーが出ないように
|
- Fix: トークンのないプラグインをアンインストールするときにエラーが出ないように
|
||||||
|
- Fix: 投稿通知がオンでもダイレクト投稿はユーザーに通知されないようにされました
|
||||||
|
|
||||||
## 2023.11.0
|
## 2023.11.0
|
||||||
|
|
||||||
|
|
|
@ -521,11 +521,13 @@ export class NoteCreateService implements OnApplicationShutdown {
|
||||||
followeeId: user.id,
|
followeeId: user.id,
|
||||||
notify: 'normal',
|
notify: 'normal',
|
||||||
}).then(followings => {
|
}).then(followings => {
|
||||||
for (const following of followings) {
|
if (note.visibility !== 'specified') {
|
||||||
// TODO: ワードミュート考慮
|
for (const following of followings) {
|
||||||
this.notificationService.createNotification(following.followerId, 'note', {
|
// TODO: ワードミュート考慮
|
||||||
noteId: note.id,
|
this.notificationService.createNotification(following.followerId, 'note', {
|
||||||
}, user.id);
|
noteId: note.id,
|
||||||
|
}, user.id);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue