Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/4b6ff7ffa5f88992420976c2c28e898dfdcbe4dc
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
14 additions and
3 deletions
@ -316,9 +316,12 @@ namespace Emby.Dlna.Main
_logger . LogInformation ( "Registering publisher for {0} on {1}" , fullService , address ) ;
var uri = new UriBuilder ( _appHost . GetSmartApiUrl ( address . Address ) + descriptorUri ) ;
// DLNA will only work over http, so we must reset to http:// : {port}
uri . Scheme = "http://" ;
uri . Port = _netConfig . HttpServerPortNumber ;
if ( _appHost . PublishedServerUrl = = null )
{
// DLNA will only work over http, so we must reset to http:// : {port}.
uri . Scheme = "http" ;
uri . Port = _netConfig . HttpServerPortNumber ;
}
var device = new SsdpRootDevice
{
@ -134,6 +134,9 @@ namespace Emby.Server.Implementations
public bool CoreStartupHasCompleted { get ; private set ; }
/// <inheritdoc />
public Uri PublishedServerUrl = > _startupOptions . PublishedServerUrl ;
public virtual bool CanLaunchWebBrowser
{
get
@ -52,6 +52,11 @@ namespace MediaBrowser.Controller
/// <value>The name of the friendly.</value>
string FriendlyName { get ; }
/// <summary>
/// Gets the configured published server url.
/// </summary>
Uri PublishedServerUrl { get ; }
/// <summary>
/// Gets the system info.
/// </summary>