mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-11 15:47:09 -07:00
New: Automatic search for missing episodes if RSS Sync hasn't been run recently
This commit is contained in:
parent
0f75a9008a
commit
192e79d2ff
6 changed files with 54 additions and 9 deletions
|
@ -49,8 +49,15 @@ namespace NzbDrone.Core.Messaging.Commands
|
|||
}
|
||||
|
||||
public void PublishCommand(string commandTypeName)
|
||||
{
|
||||
PublishCommand(commandTypeName, null);
|
||||
}
|
||||
|
||||
public void PublishCommand(string commandTypeName, DateTime? lastExecutionTime)
|
||||
{
|
||||
dynamic command = GetCommand(commandTypeName);
|
||||
command.LastExecutionTime = lastExecutionTime;
|
||||
|
||||
PublishCommand(command);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue