From 4c1670c5afd04e6f39ca3dae8ed447dc8d156981 Mon Sep 17 00:00:00 2001 From: Wind-Explorer Date: Mon, 30 Mar 2026 03:30:39 +0800 Subject: [PATCH] fix(ws): restore interaction event subscription in gateway --- src/ws/state/state.gateway.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ws/state/state.gateway.ts b/src/ws/state/state.gateway.ts index a541a44..7c74aaf 100644 --- a/src/ws/state/state.gateway.ts +++ b/src/ws/state/state.gateway.ts @@ -152,6 +152,7 @@ export class StateGateway await this.statusHandler.handleClientReportUserStatus(client, data); } + @SubscribeMessage(WS_EVENT.CLIENT_SEND_INTERACTION) async handleSendInteraction( client: AuthenticatedSocket, data: SendInteractionDto,