Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ysmoradi committed May 28, 2024
1 parent c21d48f commit 4ec7d8d
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,7 @@ public async Task SendSms(string messageText, string phoneNumber, CancellationTo

var smsMessage = MessageResource.Create(messageOptions);

if (smsMessage.ErrorCode is null)
return;
if (smsMessage.ErrorCode is null) return;

LogSendSmsFailed(logger, phoneNumber, smsMessage.ErrorCode, smsMessage.ErrorMessage);
}
Expand Down

0 comments on commit 4ec7d8d

Please sign in to comment.