GUACAMOLE-1383: Do not double-encode client identifiers within URLs.
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 2db8000..32aa2b1 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 @@
             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));
 
     };