mirror of
https://github.com/YunoHost/moulinette.git
synced 2024-09-03 20:06:31 +02:00
Merge pull request #277 from YunoHost/fix-request-params-not-decoded
[fix] Request params not decoded
This commit is contained in:
commit
9e907a5743
1 changed files with 1 additions and 1 deletions
|
@ -320,7 +320,7 @@ class _ActionsMapPlugin(object):
|
|||
for a in args:
|
||||
params[a] = True
|
||||
# Append other request params
|
||||
for k, v in request.params.dict.items():
|
||||
for k, v in dict(request.params.decode()).items():
|
||||
v = _format(v)
|
||||
if k not in params.keys():
|
||||
params[k] = v
|
||||
|
|
Loading…
Reference in a new issue