Add server fallback port 8443

// FREEBIE
This commit is contained in:
lilia 2016-09-07 21:53:56 -07:00
parent 4be86a28ef
commit 0487fa3cd1
7 changed files with 121 additions and 66 deletions

View file

@ -7,8 +7,8 @@
'use strict';
window.textsecure = window.textsecure || {};
function AccountManager(url, username, password) {
this.server = new TextSecureServer(url, username, password);
function AccountManager(url, ports, username, password) {
this.server = new TextSecureServer(url, ports, username, password);
}
AccountManager.prototype = {