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/7689b50dee1d4ac4bde00a1ae02c01db1373de98/Exceptron.Client/ExceptronApiException.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Sonarr/Exceptron.Client/ExceptronApiException.cs

17 lines
404 B

using System;
using System.Net;
namespace Exceptron.Client
{
public class ExceptronApiException : Exception
{
public ExceptronApiException(WebException innerException, string message)
: base(message, innerException)
{
Response = (HttpWebResponse)innerException.Response;
}
public HttpWebResponse Response { get; private set; }
}
}