- Issue created by @khiminrm
- π¨π¦Canada joelpittet Vancouver
Maybe itβs not being encoded and/or decoded with urlencode()?
Probably need to step through
- πΊπ¦Ukraine khiminrm
@joelpittet thanks! you was right. I've debugged js and received error in
parseQueryString
in line:
key = decodeURIComponent(pair[0].replace(/\+/g, ' '));
I've created patch to fix that and it looks like it fixes the error.