Send group ID with @mention push notifications (#13440)

This allows the apps to open the correct group page directly
This commit is contained in:
Phillip Thelen
2021-08-12 23:19:01 +02:00
committed by GitHub
parent 03d3e32be9
commit cca1565b99

View File

@@ -645,7 +645,7 @@ schema.methods.sendChat = function sendChat (options = {}) {
identifier: 'chatMention',
title: `${user.profile.name} mentioned you in ${this.name}`,
message: newChatMessage.unformattedText,
payload: { type: this.type },
payload: { type: this.type, groupID: this._id },
});
}
});