mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-19 04:59:35 -07:00
Fixed issue with deleting series
This commit is contained in:
parent
d43e709ddd
commit
44072a4d6b
1 changed files with 7 additions and 1 deletions
|
@ -34,7 +34,13 @@ namespace NzbDrone.Core.Jobs
|
||||||
|
|
||||||
public void Start(ProgressNotification notification, dynamic options)
|
public void Start(ProgressNotification notification, dynamic options)
|
||||||
{
|
{
|
||||||
DeleteSeries(notification, options.SeriesId, options.DeleteFiless);
|
if (options == null)
|
||||||
|
throw new ArgumentNullException("options");
|
||||||
|
|
||||||
|
if (options.SeriesId == 0)
|
||||||
|
throw new ArgumentNullException("options.SeriesId");
|
||||||
|
|
||||||
|
DeleteSeries(notification, options.SeriesId, options.DeleteFiles);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void DeleteSeries(ProgressNotification notification, int seriesId, bool deleteFiles)
|
private void DeleteSeries(ProgressNotification notification, int seriesId, bool deleteFiles)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue