Cleanup redundant DownloadProtocol in indexers

This commit is contained in:
Bogdan
2023-06-19 04:16:40 +03:00
parent f0c5d8ceea
commit 4b8906ea62
66 changed files with 4 additions and 69 deletions
@@ -9,6 +9,8 @@ namespace NzbDrone.Core.Indexers
public abstract class TorrentIndexerBase<TSettings> : HttpIndexerBase<TSettings>
where TSettings : IIndexerSettings, new()
{
public override DownloadProtocol Protocol => DownloadProtocol.Torrent;
protected TorrentIndexerBase(IIndexerHttpClient httpClient, IEventAggregator eventAggregator, IIndexerStatusService indexerStatusService, IConfigService configService, Logger logger)
: base(httpClient, eventAggregator, indexerStatusService, configService, logger)
{