mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-05-08 12:43:19 +02:00
Update src/NzbDrone.Core/Indexers/Definitions/Newznab/NewznabRequestGenerator.cs
Co-authored-by: Bogdan <mynameisbogdan@users.noreply.github.com>
This commit is contained in:
parent
11936ae15b
commit
e9ac146979
1 changed files with 1 additions and 1 deletions
|
|
@ -268,7 +268,7 @@ private IEnumerable<IndexerRequest> GetPagedRequests(SearchCriteriaBase searchCr
|
|||
parameters.Set("limit", searchCriteria.Limit.ToString());
|
||||
}
|
||||
|
||||
if (searchCriteria.Offset.HasValue && searchCriteria.Offset.Value > 0)
|
||||
if (searchCriteria.Offset is > 0)
|
||||
{
|
||||
parameters.Set("offset", searchCriteria.Offset.ToString());
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue