Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/d95ca20fc731cf51e060c7ba6802821b6dd8c48f
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
1 additions and
6 deletions
@ -313,7 +313,7 @@ namespace Emby.Dlna.Main
_logger . LogInformation ( "Registering publisher for {0} on {1}" , fullService , address ) ;
var uri = new UriBuilder ( _appHost . GetSmartApiUrl ( address . Address ) + descriptorUri ) ;
if ( string . IsNullOrEmpty ( _appHost . PublishedServerUrl ) )
if ( _appHost . PublishedServerUrl = = null )
{
// DLNA will only work over http, so we must reset to http:// : {port}.
uri . Scheme = "http" ;
@ -1146,11 +1146,6 @@ namespace Emby.Server.Implementations
/// <inheritdoc/>
public bool ListenWithHttps = > Certificate ! = null & & ServerConfigurationManager . GetNetworkConfiguration ( ) . EnableHttps ;
public string GetStartupOption ( string propName )
{
return _startupOptions . GetType ( ) . GetProperty ( propName ) . GetValue ( src , null ) ;
}
/// <inheritdoc/>
public string GetSmartApiUrl ( IPAddress ipAddress , int? port = null )
{