Github user necouchman commented on a diff in the pull request:
https://github.com/apache/guacamole-client/pull/194#discussion_r178045884
--- Diff:
guacamole-ext/src/main/java/org/apache/guacamole/net/auth/simple/SimpleConnection.java
---
@@ -98,6 +99,10 @@ public void setAttributes(Map<String, String>
attributes) {
public GuacamoleTunnel connect(GuacamoleClientInformation info)
throws GuacamoleException {
+ // Filter in connection-time information
+ TokenFilter tokenFilter = new TokenFilter();
+
tokenFilter.filterPrompts(config.getParameters(),info.getParameters());
--- End diff --
Yeah, I think I see your point, here. Will see what options there are to
take care of this.
---