fix: gateway connect using wrong url

This commit is contained in:
kozabrada123 2023-12-29 10:08:37 +01:00
parent c760d03828
commit c08208a8bf
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ impl VoiceGateway {
trace!("Created voice socket url: {}", processed_url.clone());
let (websocket_send, mut websocket_receive) =
WebSocketBackend::connect(&websocket_url).await?;
WebSocketBackend::connect(&processed_url).await?;
let shared_websocket_send = Arc::new(Mutex::new(websocket_send));