Fix undefined URL_BASE in background.js

Sieze an opportunity to move code out of the helpers.js.
Only 616 more lines to go.
This commit is contained in:
lilia 2014-05-17 13:56:08 -07:00
parent 4efb8a2616
commit ed3aa9667d
2 changed files with 12 additions and 4 deletions

View file

@ -222,5 +222,16 @@ window.textsecure.api = function() {
});
};
self.getWebsocket = function() {
var user = storage.getUnencrypted("number_id");
var password = storage.getEncrypted("password");
var URL = URL_BASE.replace(/^http/g, 'ws') + URL_CALLS['push'] + '/?';
var params = $.param({
user: '+' + getString(user).substring(1),
password: getString(password)
});
return new WebSocket(URL+params);
}
return self;
}();

View file

@ -440,10 +440,7 @@ window.textsecure.subscribeToPush = function() {
if (subscribeToPushMessageSemaphore <= 0)
return;
var user = storage.getUnencrypted("number_id");
var password = storage.getEncrypted("password");
var URL = URL_BASE.replace(/^http:/g, "ws:").replace(/^https:/g, "wss:") + URL_CALLS['push'] + "/?user=%2B" + getString(user).substring(1) + "&password=" + getString(password);
var socket = new WebSocket(URL);
var socket = textsecure.api.getWebsocket();
var pingInterval;