Fix Attempts to update all notifications (#8974)

* Fix massive update notification parameters

* CHANGELOG

* CHANGELOG
This commit is contained in:
MeiMei 2022-07-09 18:18:39 +09:00 committed by GitHub
parent 75d516011b
commit 53e54c22fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -15,6 +15,7 @@ You should also include the user name that made the change.
- Make active email validation configurable
### Bugfixes
- Server: Fix Attempts to update all notifications @mei23
## 12.112.2 (2022/07/08)

View File

@ -27,7 +27,7 @@ export async function readNotificationByQuery(
userId: User['id'],
query: Record<string, any>
) {
const notificationIds = await Notifications.find({
const notificationIds = await Notifications.findBy({
...query,
notifieeId: userId,
isRead: false,