mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
Fixed: (Cardigann) Query string gets first letter removed in request handling
This commit is contained in:
@@ -718,8 +718,8 @@ namespace NzbDrone.Core.Indexers.Cardigann
|
||||
{
|
||||
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
|
||||
{
|
||||
|
Reference in New Issue
Block a user