Skip to content

Commit

Permalink
修复事件解析错误导致 WS 连接断开问题
Browse files Browse the repository at this point in the history
  • Loading branch information
Nyayurin committed Sep 20, 2024
1 parent a838ac8 commit 3eb9c96
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ class WebSocketEventService(

else -> throw UnsupportedOperationException("Unsupported signal: $signal")
}
} catch (e: JsonConvertException) {
} catch (e: Exception) {
Logger.w(name, e) { "事件解析错误" }
}
} catch (e: Exception) {
Expand Down

0 comments on commit 3eb9c96

Please sign in to comment.