From 8fdf58971c2c972e962c7ddf16a6cde73ce1af5d Mon Sep 17 00:00:00 2001 From: lilia Date: Wed, 24 Feb 2016 16:39:37 -0800 Subject: [PATCH] Add missing semicolons // FREEBIE --- js/libtextsecure.js | 6 +++--- libtextsecure/axolotl_wrapper.js | 2 +- libtextsecure/websocket-resources.js | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/js/libtextsecure.js b/js/libtextsecure.js index 1a5ffaa57..4abce4442 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 b54629443..90fc3f1c2 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 9b3cd6535..1ca206030 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) {