forked from FoundKeyGang/FoundKey
Fix bug
This commit is contained in:
parent
7732aabc1e
commit
7e642cf700
1 changed files with 1 additions and 1 deletions
|
@ -114,7 +114,7 @@ export default define(meta, async (ps, user) => {
|
||||||
|
|
||||||
// Mark all as read
|
// Mark all as read
|
||||||
if (ps.markAsRead) {
|
if (ps.markAsRead) {
|
||||||
readUserMessagingMessage(user.id, recipient.id, messages.map(x => x.id));
|
readUserMessagingMessage(user.id, recipient.id, messages.filter(m => m.recipientId === user.id).map(x => x.id));
|
||||||
}
|
}
|
||||||
|
|
||||||
return await Promise.all(messages.map(message => MessagingMessages.pack(message, user, {
|
return await Promise.all(messages.map(message => MessagingMessages.pack(message, user, {
|
||||||
|
|
Loading…
Reference in a new issue