From 935d26a41b89f552d01a03388ec537bce8f0a466 Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Thu, 9 Jul 2020 16:09:38 +1000 Subject: [PATCH] add missing window import to decode group sync message --- libtextsecure/contacts_parser.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libtextsecure/contacts_parser.js b/libtextsecure/contacts_parser.js index 4a4c38b69..e7f1a7e21 100644 --- a/libtextsecure/contacts_parser.js +++ b/libtextsecure/contacts_parser.js @@ -55,5 +55,7 @@ GroupBuffer.prototype.constructor = GroupBuffer; const ContactBuffer = function Constructor(arrayBuffer) { ProtoParser.call(this, arrayBuffer, textsecure.protobuf.ContactDetails); }; + +window.GroupBuffer = GroupBuffer; ContactBuffer.prototype = Object.create(ProtoParser.prototype); ContactBuffer.prototype.constructor = ContactBuffer;