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

28 lines
591 B

#pragma warning disable CS1591
6 years ago
namespace MediaBrowser.Controller.Providers
{
public enum MetadataRefreshMode
{
/// <summary>
/// The none.
6 years ago
/// </summary>
None = 0,
/// <summary>
/// The validation only.
6 years ago
/// </summary>
ValidationOnly = 1,
/// <summary>
/// Providers will be executed based on default rules.
6 years ago
/// </summary>
Default = 2,
/// <summary>
/// All providers will be executed to search for new metadata.
6 years ago
/// </summary>
FullRefresh = 3
}
}