diff --git a/js/libtextsecure.js b/js/libtextsecure.js index 1a5ffaa5..4abce444 100644 --- a/js/libtextsecure.js +++ b/js/libtextsecure.js @@ -35248,7 +35248,7 @@ axolotlInternal.RecipientRecord = function() { return axolotlInstance.decryptWhisperMessage(fromAddress, getString(blob)); }, closeOpenSessionForDevice: function(encodedNumber) { - return axolotlInstance.closeOpenSessionForDevice(encodedNumber) + return axolotlInstance.closeOpenSessionForDevice(encodedNumber); }, encryptMessageFor: function(deviceObject, pushMessageContent) { return axolotlInstance.encryptMessageFor(deviceObject, pushMessageContent); @@ -35843,8 +35843,8 @@ axolotlInternal.RecipientRecord = function() { this.verb = options.verb || options.type; this.path = options.path || options.url; this.body = options.body || options.data; - this.success = options.success - this.error = options.error + this.success = options.success; + this.error = options.error; this.id = options.id; if (this.id === undefined) { diff --git a/libtextsecure/axolotl_wrapper.js b/libtextsecure/axolotl_wrapper.js index b5462944..90fc3f1c 100644 --- a/libtextsecure/axolotl_wrapper.js +++ b/libtextsecure/axolotl_wrapper.js @@ -15,7 +15,7 @@ return axolotlInstance.decryptWhisperMessage(fromAddress, getString(blob)); }, closeOpenSessionForDevice: function(encodedNumber) { - return axolotlInstance.closeOpenSessionForDevice(encodedNumber) + return axolotlInstance.closeOpenSessionForDevice(encodedNumber); }, encryptMessageFor: function(deviceObject, pushMessageContent) { return axolotlInstance.encryptMessageFor(deviceObject, pushMessageContent); diff --git a/libtextsecure/websocket-resources.js b/libtextsecure/websocket-resources.js index 9b3cd653..1ca20603 100644 --- a/libtextsecure/websocket-resources.js +++ b/libtextsecure/websocket-resources.js @@ -30,8 +30,8 @@ this.verb = options.verb || options.type; this.path = options.path || options.url; this.body = options.body || options.data; - this.success = options.success - this.error = options.error + this.success = options.success; + this.error = options.error; this.id = options.id; if (this.id === undefined) {