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/020b1d9a6425dca8540156ace187fe72dd75f8f1/MediaBrowser.Controller/Resolvers/IResolverIgnoreRule.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Controller/Resolvers/IResolverIgnoreRule.cs

14 lines
360 B

using CommonIO;
using MediaBrowser.Controller.Entities;
namespace MediaBrowser.Controller.Resolvers
{
/// <summary>
/// Provides a base "rule" that anyone can use to have paths ignored by the resolver
/// </summary>
public interface IResolverIgnoreRule
{
bool ShouldIgnore(FileSystemMetadata fileInfo, BaseItem parent);
}
}