Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/blame/commit/1aa9bbe0def4980b8604123da70de05a6945f2b2/NzbDrone.Web/Models/SettingsModels.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Radarr/NzbDrone.Web/Models/SettingsModels.cs

12 lines
280 B

using System.Collections.Generic;
15 years ago
using System.ComponentModel;
using NzbDrone.Core.Repository;
15 years ago
namespace NzbDrone.Web.Models
{
public class SettingsModel
15 years ago
{
[DisplayName("TV Series Root Folder(s)")]
public List<RootDir> Directories { get; set; }
15 years ago
}
}