fix: ignoring stickers on messages

This commit is contained in:
canove
2020-10-01 14:21:23 -03:00
parent 3de9bf9ca7
commit 7d4e89b8d1
3 changed files with 86 additions and 8 deletions

View File

@@ -209,7 +209,8 @@ const isValidMsg = (msg: WbotMessage): boolean => {
msg.type === "video" ||
msg.type === "image" ||
msg.type === "document" ||
msg.type === "vcard"
msg.type === "vcard" ||
msg.type === "sticker"
)
return true;
return false;