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/57c296c62ff9fbdab07d94218cb5aa5f22e11d6e/NzbDrone.Core/Repository/Config.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Prowlarr/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; }
}
}