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