From 42cd4dca5d0b6a68052744604d32693d6497aa7c Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Fri, 12 Aug 2016 14:53:54 -0700 Subject: [PATCH] GUACAMOLE-78: Preserve query parameters when redirecting to user's home page. --- guacamole/src/main/webapp/app/index/config/indexRouteConfig.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guacamole/src/main/webapp/app/index/config/indexRouteConfig.js b/guacamole/src/main/webapp/app/index/config/indexRouteConfig.js index 904ab85b4..dd2ec6d68 100644 --- a/guacamole/src/main/webapp/app/index/config/indexRouteConfig.js +++ b/guacamole/src/main/webapp/app/index/config/indexRouteConfig.js @@ -88,7 +88,7 @@ angular.module('index').config(['$routeProvider', '$locationProvider', // Otherwise, reject and reroute else { - $location.url(homePage.url); + $location.path(homePage.url); route.reject(); }