mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 14:03:29 -07:00
Added DeleteSeriesJob to remove series in BG.
Fixed SeriesUpdate Grid Edit to properly save SeasonFolder changes. Added Delete to SeriesGrid.
This commit is contained in:
parent
4d7bb451f2
commit
d97382ad0c
6 changed files with 135 additions and 41 deletions
|
@ -98,8 +98,6 @@ namespace NzbDrone.Core.Providers.Jobs
|
|||
return true;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Starts the execution of a job asynchronously
|
||||
/// </summary>
|
||||
|
@ -107,7 +105,7 @@ namespace NzbDrone.Core.Providers.Jobs
|
|||
/// <param name="targetId">The targetId could be any Id parameter eg. SeriesId. it will be passed to the job implementation
|
||||
/// to allow it to filter it's target of execution.</param>
|
||||
/// <returns>True if ran, false if skipped</returns>
|
||||
public bool BeginExecute(Type jobType, int targetId = 0)
|
||||
public virtual bool BeginExecute(Type jobType, int targetId = 0)
|
||||
{
|
||||
lock (ExecutionLock)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue