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/2f204e3d29152c7ff62020f3308b3310ed8c26c3/NzbDrone.Common/Expansive/CircularReferenceException.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Prowlarr/NzbDrone.Common/Expansive/CircularReferenceException.cs

12 lines
231 B

12 years ago
using System;
namespace NzbDrone.Common.Expansive
{
public class CircularReferenceException : Exception
{
public CircularReferenceException(string message)
: base(message)
{
}
}
}