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

pull/1582/head
bakerboy448 2 years ago committed by GitHub
parent 9b50fc40ca
commit 2e4fa9d06d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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)

Loading…
Cancel
Save