Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/src/commit/94f64567c6e18bff8015c9be90a1a0b78cbfdb05/NzbDrone.Core/Datastore/ModelBase.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Prowlarr/NzbDrone.Core/Datastore/ModelBase.cs

11 lines
199 B

using System.Diagnostics;
namespace NzbDrone.Core.Datastore
{
[DebuggerDisplay("{GetType()} ID = {Id}")]
public abstract class ModelBase
{
public int Id { get; set; }
}
}