mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-24 04:09:49 +00:00
Disable socket level reconnect
This is now handled at a higher level by the message receiver with the aid of http requests for diagnosing the disconnect. // FREEBIE
This commit is contained in:
@@ -39201,7 +39201,7 @@ TextSecureServer = function () {
|
||||
var password = textsecure.storage.get("password");
|
||||
var params = 'login=%2B' + encodeURIComponent(user.substring(1)) + '&password=' + encodeURIComponent(password);
|
||||
var url = url + URL_CALLS['push'] + '/?' + params;
|
||||
return TextSecureWebSocket(url)
|
||||
return TextSecureWebSocket(url, {reconnectTimeout: false});
|
||||
}
|
||||
|
||||
self.getTempWebsocket = function() {
|
||||
|
||||
Reference in New Issue
Block a user