From 1d672f769d47454a558471a7b284bc0494219aea Mon Sep 17 00:00:00 2001 From: FabianLars Date: Mon, 6 Jan 2025 13:36:54 +0100 Subject: [PATCH] fix --- plugins/websocket/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/websocket/src/lib.rs b/plugins/websocket/src/lib.rs index f5d1b1ef..cbf4e112 100644 --- a/plugins/websocket/src/lib.rs +++ b/plugins/websocket/src/lib.rs @@ -8,6 +8,7 @@ use tauri::{ }; use tokio::{net::TcpStream, sync::Mutex}; use tokio_tungstenite::{ + connect_async_tls_with_config, tungstenite::{ client::IntoClientRequest, protocol::{CloseFrame as ProtocolCloseFrame, WebSocketConfig},