Fixed: (AnimeBytes) Change RateLimit to 4s (#1580)

This commit is contained in:
bakerboy448 2023-04-05 20:32:58 -05:00 committed by GitHub
parent 9b50fc40ca
commit 2e4fa9d06d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -32,7 +32,7 @@ namespace NzbDrone.Core.Indexers.Definitions
public override DownloadProtocol Protocol => DownloadProtocol.Torrent;
public override IndexerPrivacy Privacy => IndexerPrivacy.Private;
public override IndexerCapabilities Capabilities => SetCapabilities();
public override TimeSpan RateLimit => TimeSpan.FromSeconds(10);
public override TimeSpan RateLimit => TimeSpan.FromSeconds(4);
public AnimeBytes(IIndexerHttpClient httpClient, IEventAggregator eventAggregator, IIndexerStatusService indexerStatusService, IConfigService configService, Logger logger)
: base(httpClient, eventAggregator, indexerStatusService, configService, logger)