mirror of
https://github.com/librespot-org/librespot.git
synced 2024-11-08 16:45:43 +00:00
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:
commit
2288759309
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue