Skip to content

Commit

Permalink
Updated the success message to contain the corrected number in suppor…
Browse files Browse the repository at this point in the history
…t of #380.
  • Loading branch information
uncheckederror committed Aug 5, 2023
1 parent 56ff247 commit 0e14c25
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Messaging/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -829,7 +829,7 @@
// Let the caller know that delivery status for specific numbers.
return TypedResults.Ok(new SendMessageResponse
{
Message = $"MMS Message sent to {record.To}",
Message = $"MMS Message sent to {toForward.msisdn}",
MessageSent = true,
});
}
Expand Down Expand Up @@ -894,7 +894,7 @@
// Let the caller know that delivery status for specific numbers.
return TypedResults.Ok(new SendMessageResponse
{
Message = $"SMS Message sent to {record.To}",
Message = $"SMS Message sent to {toForward.msisdn}",
MessageSent = true,
});
}
Expand Down

0 comments on commit 0e14c25

Please sign in to comment.