Skip to content

Commit

Permalink
Merge pull request #109 from xcomponent/fix-ws-config-override
Browse files Browse the repository at this point in the history
Fixing Websocket configuration override
  • Loading branch information
fredericcarre committed Aug 9, 2019
2 parents 469016d + af2d141 commit f41ec7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ReactiveXComponent/WebSocket/WebSocketConnection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}
}

0 comments on commit f41ec7f

Please sign in to comment.