GUACAMOLE-1383: Do not double-encode client identifiers within URLs.

This commit is contained in:
Michael Jumper
2021-07-20 21:25:09 -07:00
parent a1b4e76ab8
commit e79b7b6e4e

View File

@@ -239,7 +239,7 @@ angular.module('client').controller('clientController', ['$scope', '$routeParams
ids.push(id); ids.push(id);
// Reconstruct path, updating attached clients via change in route // Reconstruct path, updating attached clients via change in route
$location.path('/client/' + encodeURIComponent(ManagedClientGroup.getIdentifier(ids))); $location.path('/client/' + ManagedClientGroup.getIdentifier(ids));
}; };