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

24 lines
598 B

using MediaBrowser.Controller.Entities;
6 years ago
namespace MediaBrowser.Controller.Providers
{
/// <summary>
/// Interface IImageProvider.
6 years ago
/// </summary>
public interface IImageProvider
{
/// <summary>
/// Gets the name.
/// </summary>
/// <value>The name.</value>
string Name { get; }
/// <summary>
/// Supports the specified item.
6 years ago
/// </summary>
/// <param name="item">The item.</param>
/// <returns><c>true</c> if the provider supports the item.</returns>
6 years ago
bool Supports(BaseItem item);
}
}