mirror of
https://github.com/Prowlarr/Prowlarr
synced 2025-12-06 08:34:28 +01:00
Fixed: (Cardigann) Query string gets first letter removed in request handling
This commit is contained in:
parent
43f4899324
commit
858415b037
1 changed files with 2 additions and 2 deletions
|
|
@ -718,8 +718,8 @@ protected async Task<HttpResponse> HandleRequest(RequestBlock request, Dictionar
|
|||
{
|
||||
if (!requestLinkStr.Contains("?"))
|
||||
{
|
||||
// TODO Need Encoding here if we add it back
|
||||
requestLinkStr += "?" + queryCollection.GetQueryString(separator: request.Queryseparator).Substring(1);
|
||||
requestLinkStr += "?";
|
||||
requestLinkStr += queryCollection.GetQueryString(_encoding, separator: request.Queryseparator);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue