mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-07-10 03:31:50 +00:00
c58308b70f
The Haskell CLI already mutes SEConnectionNotFound at default log level (View.hs:2632, "-- mutes delete group error"). The Node SDK had no equivalent filter, so every apiRemoveMembers / apiLeaveGroup call logged two noisy but harmless errors: - ErrorStore connectionNotFound (DB row deleted before async agent event) - ErrorAgent CONN NOT_FOUND with empty agentConnId (bulk SMP ERR) Add isMutedChatError() to skip these two exact shapes in the event loop, matching the CLI's default behavior. All other errors still log.