From a2738088658e808a553cb6cf9ee46782b55f1b11 Mon Sep 17 00:00:00 2001 From: Seth Call Date: Wed, 17 Sep 2014 10:26:58 -0500 Subject: [PATCH] * fix reconnect path again --- websocket-gateway/lib/jam_websockets/router.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/websocket-gateway/lib/jam_websockets/router.rb b/websocket-gateway/lib/jam_websockets/router.rb index 5a6b42bfb..83447b9b9 100644 --- a/websocket-gateway/lib/jam_websockets/router.rb +++ b/websocket-gateway/lib/jam_websockets/router.rb @@ -738,7 +738,7 @@ module JamWebsockets ConnectionManager.active_record_transaction do |connection_manager| heartbeat_interval, connection_stale_time, connection_expire_time = determine_connection_times(context.user, context.client_type) puts "RECONNECETETETETETETETET" - connection_manager.reconnect(connection, connection.music_session_id, nil, connection_stale_time, connection_expire_time, nil) + connection_manager.reconnect(connection, client.channel_id, connection.music_session_id, nil, connection_stale_time, connection_expire_time, nil) end end end