diff libervia/server/server.py @ 1158:fb4b4da61132

backend: fixed args transmission on page redirection.
author Goffi <goffi@goffi.org>
date Sat, 23 Feb 2019 21:05:06 +0100
parents 94f9d81a475e
children ef3adc3f2078
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)