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/1d59a48204046dab8ceb0e2f2bae649f67eeb025/NzbDrone.Core/Model/UpdatePackage.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Radarr/NzbDrone.Core/Model/UpdatePackage.cs

13 lines
244 B

using System;
using System.Linq;
namespace NzbDrone.Core.Model
{
public class UpdatePackage
{
public string Url { get; set; }
public string FileName { get; set; }
public Version Version { get; set; }
}
}