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