Skip to content

Commit

Permalink
Swapped from and to in support of #380.
Browse files Browse the repository at this point in the history
  • Loading branch information
uncheckederror committed Aug 5, 2023
1 parent 0e14c25 commit 7c62bf7
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 {toForward.msisdn}",
Message = $"MMS Message sent to {toForward.to}",
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 {toForward.msisdn}",
Message = $"SMS Message sent to {toForward.to}",
MessageSent = true,
});
}
Expand Down

0 comments on commit 7c62bf7

Please sign in to comment.