Update dependencies

This commit is contained in:
Joscha 2022-12-10 02:13:13 +01:00
parent 1c0f73b6b0
commit 5b9648271c
3 changed files with 10 additions and 7 deletions

View file

@ -575,7 +575,7 @@ pub async fn connect(
}
let (ws, response) = tokio_tungstenite::connect_async(request).await?;
let (mut parts, ()) = response.into_parts();
let (mut parts, _) = response.into_parts();
let set_cookies = match parts.headers.entry(header::SET_COOKIE) {
header::Entry::Occupied(entry) => entry.remove_entry_mult().1.collect(),
header::Entry::Vacant(_) => vec![],