mirror of https://github.com/Radarr/Radarr
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 @@ namespace NzbDrone.Core.Datastore
|
|||
}
|
||||
|
||||
[JsonProperty(PropertyName = "id")]
|
||||
private int OID { get; set; }
|
||||
private int OID;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -302,6 +302,8 @@ namespace NzbDrone.Core.Tv
|
|||
|
||||
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