Fixed: (Cardigann) Query string gets first letter removed in request handling

pull/1275/head
Qstick 2 years ago
parent 43f4899324
commit 858415b037

@ -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
{

Loading…
Cancel
Save