fix(onebot-v12): 修复正向 WS connect 与反向 WS 心跳#213
Merged
Conversation
正向 WebSocket 需在注册 dispatch 监听器后再发送 connect 元事件;心跳定时器改为在协议启动时统一初始化,使仅 ws_reverse 配置也能收到 heartbeat。 Co-authored-by: Cursor <cursoragent@cursor.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
connect元事件(NoneBot2 报Missing connect meta event)ws_reverse时收不到heartbeat的问题start()中无效的提前广播connect根因
dispatchMetaEvent("connect")在注册dispatch监听器之前执行,事件丢失startWebSocket()内启动,use_ws: false时不会触发Test plan
type=meta, detail_type=connectheartbeatws_reverse配置时也能收到heartbeatws://localhost:6727/kook/xxx/onebot/v12不再报 Missing connect meta eventFixes #211
Made with Cursor