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