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/3ce8ffe21f4cd98e919fe6402627df6a8532979d/NzbDrone.Web/Models/ExistingSeriesModel.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Radarr/NzbDrone.Web/Models/ExistingSeriesModel.cs

13 lines
282 B

using System;
using System.Collections.Generic;
using System.Web.Mvc;
namespace NzbDrone.Web.Models
{
public class ExistingSeriesModel
{
public SelectList Quality { get; set; }
public List<Tuple<string, string, int>> ExistingSeries { get; set; }
}
}