Fix subscribeToPush is not defined
This commit is contained in:
parent
ed3aa9667d
commit
170257dafb
1 changed files with 2 additions and 2 deletions
|
@ -449,13 +449,13 @@ window.textsecure.subscribeToPush = function() {
|
|||
console.log('Server is down :(');
|
||||
clearInterval(pingInterval);
|
||||
subscribeToPushMessageSemaphore--;
|
||||
setTimeout(function() { subscribeToPush(message_callback); }, 60000);
|
||||
setTimeout(function() { textsecure.subscribeToPush(message_callback); }, 60000);
|
||||
};
|
||||
socket.onclose = function(socketEvent) {
|
||||
console.log('Server closed :(');
|
||||
clearInterval(pingInterval);
|
||||
subscribeToPushMessageSemaphore--;
|
||||
setTimeout(function() { subscribeToPush(message_callback); }, 60000);
|
||||
setTimeout(function() { textsecure.subscribeToPush(message_callback); }, 60000);
|
||||
};
|
||||
socket.onopen = function(socketEvent) {
|
||||
console.log('Connected to server!');
|
||||
|
|
Loading…
Reference in a new issue