fix: properly set chatId

This was causing errors when using the .reply() function
This commit is contained in:
Pedro Lopez
2020-04-05 22:57:59 -04:00
parent 67435b2244
commit 7acbd3d800

View File

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