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/e25c538ac70b014f9872d3fde18339a8c0d9bcbf/MediaBrowser.Model/Logging/LogSeverity.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Model/Logging/LogSeverity.cs

31 lines
552 B

namespace MediaBrowser.Model.Logging
{
/// <summary>
/// Enum LogSeverity
/// </summary>
public enum LogSeverity
{
/// <summary>
/// The info
/// </summary>
Info,
/// <summary>
/// The debug
/// </summary>
Debug,
/// <summary>
/// The warn
/// </summary>
Warn,
/// <summary>
/// The error
/// </summary>
Error,
/// <summary>
/// The fatal
/// </summary>
Fatal
}
}