Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/blame/commit/f21a235c001c331dfc85b012b62c4712bd4144ff/NzbDrone.Core/Tv/Series.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Sonarr/NzbDrone.Core/Tv/Series.cs

46 lines
1.5 KiB

using System;
using System.Collections.Generic;
using Marr.Data;
12 years ago
using NzbDrone.Core.Datastore;
using NzbDrone.Core.Model;
using NzbDrone.Core.Qualities;
using NzbDrone.Core.RootFolders;
12 years ago
15 years ago
namespace NzbDrone.Core.Tv
15 years ago
{
12 years ago
public class Series : ModelBase
15 years ago
{
public Series()
{
Images = new List<MediaCover.MediaCover>();
}
public int TvdbId { get; set; }
public int TvRageId { get; set; }
public string ImdbId { get; set; }
15 years ago
public string Title { get; set; }
public string CleanTitle { get; set; }
public SeriesStatusType Status { get; set; }
public string Overview { get; set; }
public String AirTime { get; set; }
15 years ago
public bool Monitored { get; set; }
public int QualityProfileId { get; set; }
public bool SeasonFolder { get; set; }
public DateTime? LastInfoSync { get; set; }
public int Runtime { get; set; }
public List<MediaCover.MediaCover> Images { get; set; }
public SeriesTypes SeriesType { get; set; }
public BacklogSettingType BacklogSetting { get; set; }
public string Network { get; set; }
public DateTime? CustomStartDate { get; set; }
public bool UseSceneNumbering { get; set; }
public string TitleSlug { get; set; }
public string Path { get; set; }
public string RootFolderPath { get; set; }
public DateTime? FirstAired { get; set; }
public LazyLoaded<QualityProfile> QualityProfile { get; set; }
15 years ago
}
}