From bed582b953915c3ae0f4716339f15f7605d32593 Mon Sep 17 00:00:00 2001 From: Cilly Leang Date: Tue, 27 Jan 2026 18:25:20 +1100 Subject: [PATCH] fix(gateway): send heartbeats correctly oops --- .../kotlin/moe/lava/neon/core/api/gateway/GatewaySession.kt | 1 - 1 file changed, 1 deletion(-) diff --git a/core/src/commonMain/kotlin/moe/lava/neon/core/api/gateway/GatewaySession.kt b/core/src/commonMain/kotlin/moe/lava/neon/core/api/gateway/GatewaySession.kt index d617d65..57ccbbd 100644 --- a/core/src/commonMain/kotlin/moe/lava/neon/core/api/gateway/GatewaySession.kt +++ b/core/src/commonMain/kotlin/moe/lava/neon/core/api/gateway/GatewaySession.kt @@ -125,7 +125,6 @@ class GatewaySession private constructor( Event.QoSHeartbeat(lastSeq).pack().send() missedHeartbeats += 1 delay(interval) - break } } }