mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
Deleting a series will also delete all items in history for that series.
This commit is contained in:
parent
7ebda928f8
commit
e4c9e11ee1
@ -128,6 +128,10 @@ public virtual void DeleteSeries(int seriesId)
|
||||
//Delete Files, Episdes, Seasons then the Series
|
||||
//Can't use providers because episode provider needs series provider - Cyclic Dependency Injection, this will work
|
||||
|
||||
Logger.Debug("Deleting History Items from DB for Series: {0}", series.SeriesId);
|
||||
var episodes = series.Episodes.Select(e => e.EpisodeId).ToList();
|
||||
episodes.ForEach(e => _repository.DeleteMany<History>(h => h.EpisodeId == e));
|
||||
|
||||
Logger.Debug("Deleting EpisodeFiles from DB for Series: {0}", series.SeriesId);
|
||||
_repository.DeleteMany(series.EpisodeFiles);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user