1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

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) 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([]) onFinish([])
}) });
}) } else {
}) resolve([]);
}
});
} }
function convertEndpointAddressToManualAddress(info) { function convertEndpointAddressToManualAddress(info) {