Skip to content

Commit

Permalink
fix: fix message receive for 22xxx
Browse files Browse the repository at this point in the history
  • Loading branch information
ilharp committed Mar 16, 2024
1 parent c1086a7 commit a55fb93
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/engine-chronocat-api/src/handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ const dispatcher = async (
payload: unknown,
) => {
switch (method) {
case 'nodeIKernelMsgListener/onRecvActiveMsg':
case 'nodeIKernelMsgListener/onRecvMsg': {
const { msgList } = payload as OnRecvMsg

Expand Down
1 change: 1 addition & 0 deletions packages/engine-chronocat-event/src/handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ const dispatcher = async (
payload: unknown,
) => {
switch (method) {
case 'nodeIKernelMsgListener/onRecvActiveMsg':
case 'nodeIKernelMsgListener/onRecvMsg': {
const { msgList } = payload as OnRecvMsg

Expand Down

0 comments on commit a55fb93

Please sign in to comment.