From af2d14186dca42a99175dd683d0de088082d6fd7 Mon Sep 17 00:00:00 2001 From: Anouar HASSINE Date: Fri, 9 Aug 2019 16:01:30 +0200 Subject: [PATCH] Fixing Websocket configuration override --- ReactiveXComponent/WebSocket/WebSocketConnection.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReactiveXComponent/WebSocket/WebSocketConnection.cs b/ReactiveXComponent/WebSocket/WebSocketConnection.cs index 7148e5c..90010ea 100644 --- a/ReactiveXComponent/WebSocket/WebSocketConnection.cs +++ b/ReactiveXComponent/WebSocket/WebSocketConnection.cs @@ -44,7 +44,7 @@ public IXCSession CreateSession(ConfigurationOverrides configurationOverrides = endpoint.Type = configurationOverrides.WebSocketType.Value; } - return new WebSocketSession(_endpoint, _timeout, _xcConfiguration, _privateCommunicationIdentifier); + return new WebSocketSession(endpoint, _timeout, _xcConfiguration, _privateCommunicationIdentifier); } } }