From cd2218ada763f82dd9865d798b85c1c5cefdab9a Mon Sep 17 00:00:00 2001 From: lilia Date: Sun, 1 May 2016 20:35:16 -0700 Subject: [PATCH] Move hard-coded worker url out of libtextsecure // FREEBIE --- js/background.js | 2 +- js/libtextsecure.js | 4 ++-- libtextsecure/protocol_wrapper.js | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/js/background.js b/js/background.js index 18d1b2cfd..22f08f14e 100644 --- a/js/background.js +++ b/js/background.js @@ -33,7 +33,7 @@ }); // start a background worker for ecc - textsecure.protocol_wrapper.startWorker(); + textsecure.protocol_wrapper.startWorker('/js/libsignal-protocol-worker.js'); extension.onLaunched(function() { console.log('extension launched'); diff --git a/js/libtextsecure.js b/js/libtextsecure.js index 85d420b6e..f0712b4f7 100644 --- a/js/libtextsecure.js +++ b/js/libtextsecure.js @@ -35429,8 +35429,8 @@ Internal.SessionLock.queueJobForNumber = function queueJobForNumber(number, runJ window.textsecure = window.textsecure || {}; window.textsecure.protocol_wrapper = { - startWorker: function() { - protocolInstance.startWorker('/js/libsignal-protocol-worker.js'); + startWorker: function(url) { + protocolInstance.startWorker(url); }, stopWorker: function() { protocolInstance.stopWorker(); diff --git a/libtextsecure/protocol_wrapper.js b/libtextsecure/protocol_wrapper.js index 834a806cd..1714ff193 100644 --- a/libtextsecure/protocol_wrapper.js +++ b/libtextsecure/protocol_wrapper.js @@ -11,8 +11,8 @@ window.textsecure = window.textsecure || {}; window.textsecure.protocol_wrapper = { - startWorker: function() { - protocolInstance.startWorker('/js/libsignal-protocol-worker.js'); + startWorker: function(url) { + protocolInstance.startWorker(url); }, stopWorker: function() { protocolInstance.stopWorker();