feat: boolean for indicating Status update messages (#396)

This commit is contained in:
Pedro S. Lopez
2020-10-26 00:45:09 -04:00
committed by GitHub
parent 20e07c43d7
commit 42dd866a53
3 changed files with 10 additions and 0 deletions

View File

@@ -204,6 +204,8 @@ exports.LoadUtils = () => {
window.WWebJS.getMessageModel = message => {
const msg = message.serialize();
msg.isStatusV3 = message.isStatusV3;
delete msg.pendingAckUpdate;
return msg;
};