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

16 lines
277 B

using MediaBrowser.Model.Entities;
namespace MediaBrowser.Controller.Providers
{
public interface IExternalId
{
string Name { get; }
string Key { get; }
string UrlFormatString { get; }
bool Supports(IHasProviderIds item);
}
}