Merge pull request #1295 from thedtvn/fix-tokio-tungstenite-with-ver-0.23.0

Update core/src/dealer/mod.rs fix tokio-tungstenite with ver 0.23
This commit is contained in:
Roderick van Domburg 2024-06-09 10:07:41 +02:00 committed by GitHub
commit 2288759309
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -409,7 +409,7 @@ async fn connect(
let stream = socket::connect(host, port, proxy).await?;
let (mut ws_tx, ws_rx) = tokio_tungstenite::client_async_tls(address, stream)
let (mut ws_tx, ws_rx) = tokio_tungstenite::client_async_tls(address.as_str(), stream)
.await?
.0
.split();