Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/src/commit/2e9abb2e3509e2dc307fd7ec14f8b9f00df8d4cc/MediaBrowser.Controller/Entities/Genre.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.

19 lines
385 B

namespace MediaBrowser.Controller.Entities
{
/// <summary>
/// Class Genre
/// </summary>
public class Genre : BaseItem
{
/// <summary>
/// Gets the user data key.
/// </summary>
/// <returns>System.String.</returns>
public override string GetUserDataKey()
{
return "Genre-" + Name;
}
}
}