assume server discovery is in NativeShell api

This commit is contained in:
vitorsemeano 2019-03-16 17:15:37 +00:00
parent c391eaf545
commit 4be8a788b0

View File

@ -269,12 +269,15 @@ define(["events", "apiclient", "appStorage"], function(events, apiClientFactory,
});
resolve(servers)
};
require(["serverdiscovery"], function(serverDiscovery) {
serverDiscovery.findServers(1e3).then(onFinish, function() {
if (window.NativeShell && typeof window.NativeShell.findServers === 'function') {
window.NativeShell.findServers(1e3).then(onFinish, function() {
onFinish([])
})
})
})
});
} else {
resolve([]);
}
});
}
function convertEndpointAddressToManualAddress(info) {