Skip to content

Commit

Permalink
feature: refactor try decode ica body function
Browse files Browse the repository at this point in the history
  • Loading branch information
xxxigm committed Apr 29, 2024
1 parent 6785957 commit d1121d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/features/messages/ica.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export function tryDecodeIcaBody(body: string): { sender: string; calls: { desti

return { sender, calls: formattedCalls };
} catch (error) {
logger.error('Error decoding ICA body', error.message);
logger.error('Error decoding ICA body', error);
return null;
}
}
Expand Down

0 comments on commit d1121d8

Please sign in to comment.