feat: get links included in message (#457)

This commit is contained in:
Pedro S. Lopez
2020-12-25 19:08:25 -04:00
parent e2a642a81b
commit 8b101d1f3d
3 changed files with 13 additions and 0 deletions

View File

@@ -133,6 +133,12 @@ class Message extends Base {
this.mentionedIds = data.mentionedJidList;
}
/**
* Links included in the message.
* @type {Array<string>}
*/
this.links = data.links;
return super._patch(data);
}