Skip to content

Commit

Permalink
Fix #2606 (#2613)
Browse files Browse the repository at this point in the history
  • Loading branch information
corrideat authored Feb 12, 2025
1 parent 4680441 commit a1669f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shared/domains/chelonia/internals.js
Original file line number Diff line number Diff line change
Expand Up @@ -709,7 +709,7 @@ export default (sbp('sbp/selectors/register', {
}
await opFns[u[0]](u[1])
} catch (e) {
if (!e || typeof e !== 'object') {
if (e && typeof e === 'object') {
if (e.name === 'ChelErrorDecryptionKeyNotFound') {
console.warn(`[chelonia] [OP_ATOMIC] WARN '${e.name}' in processMessage for ${message.description()}: ${e.message}`, e, message.serialize())
if (e.cause) {
Expand Down

0 comments on commit a1669f5

Please sign in to comment.