We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c002167 + 60c099e commit 61159b8Copy full SHA for 61159b8
src/autocomplete.ts
@@ -605,7 +605,7 @@ class AutoComplete {
605
method: string = params._HttpMethod(),
606
url: string = params._Url(),
607
queryParams: string = params._Pre(),
608
- queryParamsStringify: string = params._QueryArg() + "=" + queryParams;
+ queryParamsStringify: string = encodeURIComponent(params._QueryArg()) + "=" + encodeURIComponent(queryParams);
609
610
if (method.match(/^GET$/i)) {
611
if (url.indexOf("?") !== -1) {
0 commit comments