Fixes GroupNotification.getChat() returning client's chat. (#699)

* 🥅 getChat returns expected, instead of the client's chat.

* 🥅 Fixed .reply method too

* revert + fix
This commit is contained in:
Rajeh Taher
2021-10-30 06:00:10 +03:00
committed by GitHub
parent 1f38b762ed
commit 95facee885

View File

@@ -43,7 +43,7 @@ class GroupNotification extends Base {
*
* @type {string}
*/
this.chatId = typeof (data.from) === 'object' ? data.from._serialized : data.from;
this.chatId = typeof (data.to) === 'object' ? data.to._serialized : data.to;
/**
* ContactId for the user that produced the GroupNotification.