GUACAMOLE-1616: Merge correction to injection of HISTORY_UUID token for external connections.

This commit is contained in:
Mike Jumper
2022-06-03 13:53:59 -07:00
committed by GitHub

View File

@@ -106,7 +106,7 @@ public class HistoryTrackingConnection extends DelegatingConnection {
updatedTokens.put("HISTORY_UUID", modeledRecord.getUUID().toString());
// Connect, and wrap the tunnel for return
GuacamoleTunnel tunnel = super.connect(info, tokens);
GuacamoleTunnel tunnel = super.connect(info, updatedTokens);
return new HistoryTrackingTunnel(
tunnel, this.connectionRecordMapper, connectionRecordModel);
}