From 6a1d8f060f3b56e3168c8e49e4c5f9801756cc22 Mon Sep 17 00:00:00 2001 From: Jacob Date: Thu, 16 Apr 2026 01:57:30 -0400 Subject: [PATCH] fix: I REALLY did this without rust-analyzer so THIS TIME fix the gateway close error path --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 3cc9520..09f8030 100644 --- a/src/main.rs +++ b/src/main.rs @@ -340,7 +340,7 @@ async fn handle_events(command_router: Arc, state: State, mut sha Ok(event) => { handle_event(command_router.clone(), state.clone(), event).await; } - Err(twilight_model::gateway::Event::GatewayClose(frame_option)) => { + Err(twilight_model::gateway::event::Event::GatewayClose(frame_option)) => { tracing::warn!(?frame_option); return; }