fix: apply message serialization fix everywhere

Moving this to a serializer function like done with a couple other models guarantees getting messages with pending acks won't fail elsewhere. It also sets it up so the we can add/remove properties on the Message model as needed in the future.

related: 51a1028588
This commit is contained in:
Pedro Lopez
2020-10-09 02:28:54 -04:00
parent 51a1028588
commit ba6ec7feab
3 changed files with 13 additions and 7 deletions

View File

@@ -166,6 +166,12 @@ exports.LoadUtils = () => {
return mediaData;
};
window.WWebJS.getMessageModel = message => {
const msg = message.serialize();
delete msg.pendingAckUpdate;
return msg;
};
window.WWebJS.getChatModel = async chat => {
let res = chat.serialize();
res.isGroup = chat.isGroup;