Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/7ed664636f87123277d8af8ac14447db07a712a5
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
6 additions and
3 deletions
@ -258,7 +258,7 @@ namespace MediaBrowser.Dlna.Main
var deviceTypeNamespace = serviceParts [ 0 ] . Replace ( '.' , '-' ) ;
_Publisher . AddDevice ( new SsdpRootDevice
var device = new SsdpRootDevice
{
CacheLifetime = TimeSpan . FromSeconds ( cacheLength ) , //How long SSDP clients can cache this info.
Location = uri , // Must point to the URL that serves your devices UPnP description document.
@ -268,8 +268,11 @@ namespace MediaBrowser.Dlna.Main
FriendlyName = "Emby Server" ,
Manufacturer = "Emby" ,
ModelName = "Emby Server" ,
Uuid = udn // This must be a globally unique value that survives reboots etc. Get from storage or embedded hardware etc.
} ) ;
Uuid = udn
// This must be a globally unique value that survives reboots etc. Get from storage or embedded hardware etc.
} ;
_Publisher . AddDevice ( device ) ;
}
}
}