Skip to content

Commit

Permalink
Fix payment string
Browse files Browse the repository at this point in the history
  • Loading branch information
vicr123 committed May 11, 2024
1 parent 222349c commit dc6fb90
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public async Task Resolve(PaymentMatter matter)
matter.To.Money += matter.Amount;
}

await service.SendAsync(state.ThreadId, $"{payer} paid {receiver} {matter.Amount.MoneyString()}");
await service.SendAsync(state.ThreadId, $"{Emoji.FlyingMoney} {matter.Amount.MoneyString()}: **{payer}** {Emoji.ArrowRight} **{receiver}**");

// Indicate that the payment portion of this matter is resolved
matter.PaymentComplete = true;
Expand Down

0 comments on commit dc6fb90

Please sign in to comment.