add images table
This commit is contained in:
parent
417821cb5a
commit
2ebcfe8642
6 changed files with 12 additions and 141 deletions
|
@ -309,6 +309,7 @@
|
|||
existingServer.DateLastAccessed = new Date().getTime();
|
||||
existingServer.LastConnectionMode = ConnectionMode.Manual;
|
||||
existingServer.ManualAddress = apiClient.serverAddress();
|
||||
existingServer.PreferredConnectionMode = ConnectionMode.Manual;
|
||||
apiClient.serverInfo(existingServer);
|
||||
|
||||
apiClient.onAuthenticated = function (instance, result) {
|
||||
|
@ -997,6 +998,9 @@
|
|||
if (server.LastConnectionMode != null) {
|
||||
//tests.push(server.LastConnectionMode);
|
||||
}
|
||||
if (server.PreferredConnectionMode != null) {
|
||||
tests.push(server.PreferredConnectionMode);
|
||||
}
|
||||
if (tests.indexOf(ConnectionMode.Manual) == -1) { tests.push(ConnectionMode.Manual); }
|
||||
if (tests.indexOf(ConnectionMode.Local) == -1) { tests.push(ConnectionMode.Local); }
|
||||
if (tests.indexOf(ConnectionMode.Remote) == -1) { tests.push(ConnectionMode.Remote); }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue