From cca1565b9951aad7fddd24648e313b5e3ad037f0 Mon Sep 17 00:00:00 2001 From: Phillip Thelen Date: Thu, 12 Aug 2021 23:19:01 +0200 Subject: [PATCH] Send group ID with @mention push notifications (#13440) This allows the apps to open the correct group page directly --- website/server/models/group.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/server/models/group.js b/website/server/models/group.js index c85252f675..76fcbec1de 100644 --- a/website/server/models/group.js +++ b/website/server/models/group.js @@ -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 }, }); } });