mirror of
https://github.com/dkmstr/openuds.git
synced 2024-12-21 09:34:08 +03:00
Removed { from data value
This commit is contained in:
parent
4e4218bb47
commit
d0d0fef70e
@ -174,6 +174,10 @@ public class ConnectionService {
|
||||
public GuacamoleConfiguration getConnectionConfiguration(String data)
|
||||
throws GuacamoleException {
|
||||
|
||||
// Clean up data { and } characters
|
||||
// sample valid data: nsgxslnuqvsoyvr8hacmjlezgmyjcjxvbpxiiqgs.ERg5gP0uq10WrnrqpttJJgqWSAFXpR7F
|
||||
data = data.replace("{", "").replace("}", "");
|
||||
|
||||
logger.debug("Retrieving/validating connection configuration using data from \"{}\"...", data);
|
||||
|
||||
// Build URI of remote service from the base URI and given data
|
||||
|
Loading…
Reference in New Issue
Block a user