mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-14 11:23:42 +02:00
OID changed to a field
DeleteEpsidoesNotInTvdb disabled for now since its broken
This commit is contained in:
parent
afcbbf54c7
commit
bfc026128d
@ -17,6 +17,6 @@ public int Id
|
||||
}
|
||||
|
||||
[JsonProperty(PropertyName = "id")]
|
||||
private int OID { get; set; }
|
||||
private int OID;
|
||||
}
|
||||
}
|
||||
|
@ -302,6 +302,8 @@ public virtual bool IsFirstOrLastEpisodeOfSeason(int seriesId, int seasonNumber,
|
||||
|
||||
private void DeleteEpisodesNotInTvdb(Series series, IEnumerable<Episode> tvdbEpisodes)
|
||||
{
|
||||
//Todo: This will not work as currently implemented - what are we trying to do here?
|
||||
return;
|
||||
logger.Trace("Starting deletion of episodes that no longer exist in TVDB: {0}", series.Title.WithDefault(series.Id));
|
||||
foreach (var episode in tvdbEpisodes)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user