From e79b7b6e4e342170cb4e26c117a3b82a3e629f9e Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Tue, 20 Jul 2021 21:25:09 -0700 Subject: [PATCH] GUACAMOLE-1383: Do not double-encode client identifiers within URLs. --- .../frontend/src/app/client/controllers/clientController.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guacamole/src/main/frontend/src/app/client/controllers/clientController.js b/guacamole/src/main/frontend/src/app/client/controllers/clientController.js index 2db800029..32aa2b1e5 100644 --- a/guacamole/src/main/frontend/src/app/client/controllers/clientController.js +++ b/guacamole/src/main/frontend/src/app/client/controllers/clientController.js @@ -239,7 +239,7 @@ angular.module('client').controller('clientController', ['$scope', '$routeParams ids.push(id); // Reconstruct path, updating attached clients via change in route - $location.path('/client/' + encodeURIComponent(ManagedClientGroup.getIdentifier(ids))); + $location.path('/client/' + ManagedClientGroup.getIdentifier(ids)); };