Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/89f2dfd78a5c73c9d9d5cc832ff0427fa732ae3e?style=split&whitespace=ignore-all You should set ROOT_URL correctly, otherwise the web may not work correctly.

Update Emby.Server.Implementations/ApplicationHost.cs

Co-Authored-By: Phlogi <Phlogi@users.noreply.github.com>
pull/1151/head
Claus Vium 6 years ago committed by GitHub
parent 2c4c56d6d6
commit 89f2dfd78a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1430,7 +1430,7 @@ namespace Emby.Server.Implementations
public async Task<PublicSystemInfo> GetPublicSystemInfo(CancellationToken cancellationToken) public async Task<PublicSystemInfo> GetPublicSystemInfo(CancellationToken cancellationToken)
{ {
var localAddress = await GetLocalApiUrl(cancellationToken).ConfigureAwait(false); var localAddress = await GetLocalApiUrl(cancellationToken).ConfigureAwait(false);
var wanAddress = System.String.Empty; var wanAddress = string.Empty;
if (string.IsNullOrEmpty(ServerConfigurationManager.Configuration.WanDdns)){ if (string.IsNullOrEmpty(ServerConfigurationManager.Configuration.WanDdns)){
wanAddress = await GetWanApiUrl(cancellationToken).ConfigureAwait(false); wanAddress = await GetWanApiUrl(cancellationToken).ConfigureAwait(false);

Loading…
Cancel
Save