You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@guacamole.apache.org by jm...@apache.org on 2016/08/14 01:27:09 UTC

[6/8] incubator-guacamole-client git commit: GUACAMOLE-78: Preserve query parameters when redirecting to user's home page.

GUACAMOLE-78: Preserve query parameters when redirecting to user's home page.

Project: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/commit/42cd4dca
Tree: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/tree/42cd4dca
Diff: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/diff/42cd4dca

Branch: refs/heads/master
Commit: 42cd4dca5d0b6a68052744604d32693d6497aa7c
Parents: 225736d
Author: Michael Jumper <mj...@apache.org>
Authored: Fri Aug 12 14:53:54 2016 -0700
Committer: Michael Jumper <mj...@apache.org>
Committed: Fri Aug 12 14:53:54 2016 -0700

----------------------------------------------------------------------
 guacamole/src/main/webapp/app/index/config/indexRouteConfig.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/blob/42cd4dca/guacamole/src/main/webapp/app/index/config/indexRouteConfig.js
----------------------------------------------------------------------
diff --git a/guacamole/src/main/webapp/app/index/config/indexRouteConfig.js b/guacamole/src/main/webapp/app/index/config/indexRouteConfig.js
index 904ab85..dd2ec6d 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();
                 }