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

12 lines
280 B

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