Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/858415b037b61fc15a1881e34f63b55711b3adeb You should set ROOT_URL correctly, otherwise the web may not work correctly.

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