From 0f1c52b9e344474ecb58cbb4820ba52298b08870 Mon Sep 17 00:00:00 2001 From: LittleSheep Date: Sat, 27 Sep 2025 23:00:04 +0800 Subject: [PATCH] :bug: Fix subscribe --- lib/pods/chat/chat_subscribe.dart | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/pods/chat/chat_subscribe.dart b/lib/pods/chat/chat_subscribe.dart index 4d4c1599..70868d7b 100644 --- a/lib/pods/chat/chat_subscribe.dart +++ b/lib/pods/chat/chat_subscribe.dart @@ -102,6 +102,7 @@ class ChatSubscribeNotifier extends _$ChatSubscribeNotifier { WebSocketPacket( type: 'messages.unsubscribe', data: {'chat_room_id': roomId}, + endpoint: 'sphere', ), ), ); @@ -113,6 +114,7 @@ class ChatSubscribeNotifier extends _$ChatSubscribeNotifier { WebSocketPacket( type: 'messages.subscribe', data: {'chat_room_id': roomId}, + endpoint: 'sphere', ), ), );