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

This commit is contained in:
Qstick
2022-12-31 16:36:52 -06:00
parent 43f4899324
commit 858415b037

View File

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