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

25 lines
527 B

namespace MediaBrowser.Controller.Providers
{
public enum ImageRefreshMode
{
/// <summary>
/// The none
/// </summary>
None = 0,
/// <summary>
/// Existing images will be validated
/// </summary>
ValidationOnly = 1,
/// <summary>
/// The default
/// </summary>
Default = 2,
/// <summary>
/// All providers will be executed to search for new metadata
/// </summary>
FullRefresh = 3
}
}