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

24 lines
494 B

#pragma warning disable CS1591
using MediaBrowser.Controller.Entities;
6 years ago
namespace MediaBrowser.Controller.Providers
{
/// <summary>
/// Marker interface.
6 years ago
/// </summary>
public interface IMetadataProvider
{
/// <summary>
/// Gets the name.
/// </summary>
/// <value>The name.</value>
string Name { get; }
}
public interface IMetadataProvider<TItemType> : IMetadataProvider
where TItemType : BaseItem
{
}
}