We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 317473b commit 968fc3fCopy full SHA for 968fc3f
src/SocketIOClient/Transport/TransportRouter.cs
@@ -77,7 +77,7 @@ public async Task ConnectAsync()
77
78
int index = text.IndexOf('{');
79
string json = text.Substring(index);
80
- var info = System.Text.Json.JsonSerializer.Deserialize<HandshakeInfo>(json);
+ var info = JsonSerializer.Deserialize<HandshakeInfo>(json);
81
Sid = info.Sid;
82
if (info.Upgrades.Contains("websocket") && AutoUpgrade)
83
{
0 commit comments