Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions models/WebSocketSTOMP.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ component extends="WebSocketCore" {
};

// Mix in our connection metadata with a prefix
connectionMetadata.each( (k,v)=> headers[ 'connectionMetadata-' & k ] = v );
connectionMetadata.each( (k,v)=> { headers[ 'connectionMetadata-' & k ] = v } );

var message2 = newMessage( "CONNECTED", headers ).validate();

Expand Down Expand Up @@ -479,7 +479,7 @@ component extends="WebSocketCore" {
STOMPSubscriptions = application.STOMPBroker.STOMPSubscriptions ?: {},
STOMPExchanges = {},
// Don't blow away connections if debugmode is on
STOMPConnections = application.STOMPBroker.STOMPConnections ?: {},
STOMPConnections = application.STOMPBroker.STOMPConnections ?: {}
};


Expand Down