Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/blame/commit/1a0010e8e49e48b5d6e7ea2bb85ab71b3bf6f8f3/Exceptron.Client/ExceptionSeverity.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Sonarr/Exceptron.Client/ExceptionSeverity.cs

28 lines
637 B

namespace Exceptron.Client
{
/// <summary>
/// Severity of the exception being reported
/// </summary>
public enum ExceptionSeverity
{
/// <summary>
/// Excepted Error. Can be ignored
/// </summary>
None = 0,
/// <summary>
/// Error that can be handled gracefully
/// </summary>
Warning = 1,
/// <summary>
/// Blocking user from completing their intended action
/// </summary>
Error = 2,
/// <summary>
/// Will most likely cause the application to crash
/// </summary>
Fatal = 3
}
}