mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-01-26 09:32:23 +01:00
parent
21bda07510
commit
ebca32af46
1 changed files with 1 additions and 1 deletions
|
|
@ -1037,7 +1037,7 @@ private IEnumerable<IndexerRequest> GetPagedRequests(string term, int[] categori
|
|||
{ "key", Settings.ApiKey },
|
||||
{ "max", limit.ToString() },
|
||||
{ "q", searchString },
|
||||
{ "p", ((offset / limit) + 1).ToString() }
|
||||
{ "p", (offset / limit).ToString() }
|
||||
};
|
||||
|
||||
var searchUrl = string.Format("{0}/api/v3/search/?{1}", Settings.BaseUrl.TrimEnd('/'), queryCollection.GetQueryString());
|
||||
|
|
|
|||
Loading…
Reference in a new issue