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

Remove WAN domain name options

This was used in generation and modification of certificates, but since JF doesn't generate them and shouldn't modify them, I have removed these
This commit is contained in:
sparky8251 2019-09-19 15:52:00 -04:00
parent 867a5e664c
commit cac028eb6a
27 changed files with 6 additions and 59 deletions

View file

@ -36,7 +36,7 @@ define(["events", "apiclient", "appStorage"], function(events, apiClientFactory,
}
function updateServerInfo(server, systemInfo) {
server.Name = systemInfo.ServerName, systemInfo.Id && (server.Id = systemInfo.Id), systemInfo.LocalAddress && (server.LocalAddress = systemInfo.LocalAddress), systemInfo.WanAddress && (server.RemoteAddress = systemInfo.WanAddress)
server.Name = systemInfo.ServerName, systemInfo.Id && (server.Id = systemInfo.Id), systemInfo.LocalAddress && (server.LocalAddress = systemInfo.LocalAddress)
}
function getEmbyServerUrl(baseUrl, handler) {
@ -744,4 +744,4 @@ define(["events", "apiclient", "appStorage"], function(events, apiClientFactory,
}
}
}, ConnectionManager
});
});