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/4413021213aafd16941bccf7f591fc0db726a37d/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);
}
}