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

12 lines
224 B

using PetaPoco;
namespace NzbDrone.Core.Repository
{
[PrimaryKey("Key", autoIncrement = false)]
public class Config
{
public string Key { get; set; }
public string Value { get; set; }
}
}