mirror of
https://github.com/Radarr/Radarr
synced 2025-01-21 07:00:09 +00:00
Fixed: Increase rate limit for PassThePopcorn
This commit is contained in:
parent
9876ed64e2
commit
4051cf3d80
1 changed files with 3 additions and 1 deletions
|
@ -1,4 +1,5 @@
|
|||
using NLog;
|
||||
using System;
|
||||
using NLog;
|
||||
using NzbDrone.Common.Http;
|
||||
using NzbDrone.Core.Configuration;
|
||||
using NzbDrone.Core.Parser;
|
||||
|
@ -12,6 +13,7 @@ public class PassThePopcorn : HttpIndexerBase<PassThePopcornSettings>
|
|||
public override bool SupportsRss => true;
|
||||
public override bool SupportsSearch => true;
|
||||
public override int PageSize => 50;
|
||||
public override TimeSpan RateLimit => TimeSpan.FromSeconds(4);
|
||||
|
||||
public PassThePopcorn(IHttpClient httpClient,
|
||||
IIndexerStatusService indexerStatusService,
|
||||
|
|
Loading…
Reference in a new issue