Skip to content

Commit

Permalink
Fixed a NullReferenceException when creating a connection using a pro…
Browse files Browse the repository at this point in the history
…xy connection (#769)
  • Loading branch information
wj8400684 authored Dec 16, 2024
1 parent 4c671dd commit e0fd4ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SuperSocket.Client.Proxy/ProxyConnectorBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ protected override async ValueTask<ConnectState> ConnectAsync(EndPoint remoteEnd
};
}

return await ConnectProxyAsync(remoteEndPoint, state, cancellationToken);
return await ConnectProxyAsync(remoteEndPoint, result, cancellationToken);
}
}
}

0 comments on commit e0fd4ad

Please sign in to comment.