Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/src/commit/82b06bab7ab86cfe05cbbbc221508194ccaad4e4/Exceptron.Client/ExceptronApiException.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Lidarr/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; }
}
}