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

15 lines
348 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace NzbDrone.Web.Models
{
public class SeasonEditModel
{
public int SeriesId { get; set; }
public int SeasonNumber { get; set; }
public string SeasonString { get; set; }
public bool Monitored { get; set; }
}
}