Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/b73c3f4411de5edeeded7bcd3a14e79a3d950a4d
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
17 additions and
4 deletions
@ -28,7 +28,15 @@ namespace MediaBrowser.Controller.LiveTv
return key ;
}
}
return GetClientTypeName ( ) + "-" + Name ;
if ( IsSeries & & ! string . IsNullOrWhiteSpace ( EpisodeTitle ) )
{
var name = GetClientTypeName ( ) ;
return name + "-" + Name + ( EpisodeTitle ? ? string . Empty ) ;
}
return base . CreateUserDataKey ( ) ;
}
/// <summary>
@ -53,10 +53,15 @@ namespace MediaBrowser.Controller.LiveTv
return key ;
}
}
var name = GetClientTypeName ( ) ;
return name + "-" + Name + ( EpisodeTitle ? ? string . Empty ) ;
if ( IsSeries & & ! string . IsNullOrWhiteSpace ( EpisodeTitle ) )
{
var name = GetClientTypeName ( ) ;
return name + "-" + Name + ( EpisodeTitle ? ? string . Empty ) ;
}
return base . CreateUserDataKey ( ) ;
}
public string ServiceName { get ; set ; }