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/dfe8d5436a99a6674b827f31858c02810db2dd02/NzbDrone.Core/Datastore/ModelBase.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Readarr/NzbDrone.Core/Datastore/ModelBase.cs

13 lines
235 B

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