Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/nv-3772-missing-catch-for-email-…
Browse files Browse the repository at this point in the history
…compile' into nv-3772-missing-catch-for-email-compile
  • Loading branch information
ainouzgali committed May 8, 2024
2 parents 2b557d9 + 2b12e70 commit 19c4757
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -320,8 +320,7 @@ export class SendMessagePush extends SendMessageBase {
'unexpected_push_error',
e.message || e.name || 'Un-expect Push provider error',
command,
LogCodeEnum.PUSH_ERROR,
e
LogCodeEnum.PUSH_ERROR
);

const raw = JSON.stringify(e) !== JSON.stringify({}) ? JSON.stringify(e) : JSON.stringify(e.message);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -313,8 +313,7 @@ export class SendMessageSms extends SendMessageBase {
'unexpected_sms_error',
e.message || e.name || 'Un-expect SMS provider error',
command,
LogCodeEnum.SMS_ERROR,
e
LogCodeEnum.SMS_ERROR
);

await this.executionLogRoute.execute(
Expand Down

0 comments on commit 19c4757

Please sign in to comment.