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/b310c986568bf44f72a9ca42deab54966a1867f0/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;
}
}
}