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/a0678a92618fc1137bfc1606d26bd1a4c3749775/MediaBrowser.Controller/Entities/ICollectionFolder.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Controller/Entities/ICollectionFolder.cs

33 lines
618 B

#nullable disable
#pragma warning disable CS1591
using System;
6 years ago
namespace MediaBrowser.Controller.Entities
{
/// <summary>
/// This is just a marker interface to denote top level folders.
6 years ago
/// </summary>
public interface ICollectionFolder : IHasCollectionType
{
string Path { get; }
6 years ago
string Name { get; }
6 years ago
Guid Id { get; }
6 years ago
string[] PhysicalLocations { get; }
}
public interface ISupportsUserSpecificView
{
bool EnableUserSpecificView { get; }
}
public interface IHasCollectionType
{
string CollectionType { get; }
}
}