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/7ff53e5ac25a2c90581df013fdcd464c3bbe6699/NzbDrone.Web/Models/SeasonEditModel.cs
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
using System;
|
|
using System.Collections.Generic;
|
|
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; }
|
|
}
|
|
} |