GUACAMOLE-1616: Send updated tokens after adding HISTORY_UUID.

This commit is contained in:
James Muehlner
2022-06-03 20:51:59 +00:00
parent 612491e663
commit 31f9107ca2

View File

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