Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/blame/commit/674538d73a54a0118ba9cc5f27cc8217aac4c46e/MediaBrowser.Server.Implementations/Collections/ManualCollectionsFolder.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Server.Impleme.../Collections/ManualCollectionsFolder.cs

36 lines
862 B

using MediaBrowser.Controller.Entities;
namespace MediaBrowser.Server.Implementations.Collections
{
public class ManualCollectionsFolder : BasePluginFolder, IHiddenFromDisplay
{
public ManualCollectionsFolder()
{
Name = "Collections";
DisplayMediaType = "CollectionFolder";
}
public override bool IsHidden
{
get
{
return true;
}
}
11 years ago
public bool IsHiddenFromUser(User user)
{
return !user.Configuration.DisplayCollectionsView;
}
11 years ago
public override string CollectionType
{
get { return Model.Entities.CollectionType.BoxSets; }
}
public override string GetClientTypeName()
{
return typeof(CollectionFolder).Name;
}
}
}