mirror of
https://github.com/YunoHost/moulinette.git
synced 2024-09-03 20:06:31 +02:00
[fix] Request params not decoded
This commit is contained in:
parent
923aa7d963
commit
f91fad08da
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…
Add table
Reference in a new issue