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

sync updates

This commit is contained in:
Luke Pulverenti 2015-02-10 22:28:34 -05:00
parent 47d9d8259e
commit d3b42303eb
4 changed files with 27 additions and 39 deletions

View file

@ -126,6 +126,21 @@ var Dashboard = {
var address = store.getItem('serverAddress');
if (!address && !Dashboard.isConnectMode()) {
// Try to get the server address from the browser url
// This will preserve protocol, hostname, port and subdirectory
var urlLower = getWindowUrl().toLowerCase();
var index = urlLower.indexOf('/web');
if (index == -1) {
index = urlLower.index('/dashboard');
}
if (index != -1) {
address = urlLower.substring(0, index);
return address;
}
// If the above failed, just piece it together manually
var loc = window.location;
address = loc.protocol + '//' + loc.hostname;