Mercurial > libervia-web
changeset 1158:fb4b4da61132
backend: fixed args transmission on page redirection.
| author | Goffi <goffi@goffi.org> |
|---|---|
| date | Sat, 23 Feb 2019 21:05:06 +0100 |
| parents | 64952ba7affe |
| children | 4e716967893a |
| files | libervia/server/server.py |
| diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/libervia/server/server.py Sat Feb 23 21:04:31 2019 +0100 +++ b/libervia/server/server.py Sat Feb 23 21:05:06 2019 +0100 @@ -465,7 +465,7 @@ ) # we change the request to reflect the new url request.postpath = path_list[1:] + request.postpath - request.args = args + request.args.update(args) # we start again to look for a child with the new url return self.getChildWithDefault(path_list[0], request)
