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

12 lines
231 B

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