mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-18 23:48:35 +02:00
e21574a203
New: New releases that fail will be retried a second time after waiting 1hr (configurable) Fixed: Blacklisting releases with the same date and vastly different ages
27 lines
568 B
C#
27 lines
568 B
C#
using System.Collections.Generic;
|
|
using NzbDrone.Core.Messaging.Commands;
|
|
|
|
namespace NzbDrone.Core.IndexerSearch
|
|
{
|
|
public class MissingEpisodeSearchCommand : Command
|
|
{
|
|
public List<int> EpisodeIds { get; set; }
|
|
|
|
public override bool SendUpdatesToClient
|
|
{
|
|
get
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
|
|
public MissingEpisodeSearchCommand()
|
|
{
|
|
}
|
|
|
|
public MissingEpisodeSearchCommand(List<int> episodeIds)
|
|
{
|
|
EpisodeIds = episodeIds;
|
|
}
|
|
}
|
|
} |