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 811ff22 + b091f5e commit 0671cf4Copy full SHA for 0671cf4
lib/request.js
@@ -75,7 +75,7 @@ class REQUEST {
75
'queryStringParameters' in this.app._event ? {} // do nothing
76
: Object.keys(Object.assign({},this.app._event.multiValueQueryStringParameters))
77
.reduce((qs,key) => Object.assign(qs, // get the last value of the array
78
- { [key]: this.app._event.multiValueQueryStringParameters[key].slice(-1)[0] }
+ { [key]: decodeURIComponent(this.app._event.multiValueQueryStringParameters[key].slice(-1)[0]) }
79
), {})
80
)
81
0 commit comments