Skip to content

Commit

Permalink
fix solver username
Browse files Browse the repository at this point in the history
  • Loading branch information
Catrya committed Oct 11, 2024
1 parent a46260d commit b2de920
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bot/modules/dispute/messages.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,14 +119,14 @@ exports.disputeData = async (
await ctx.telegram.sendMessage(
buyer.tg_id,
ctx.i18n.t('dispute_solver', {
solver: sanitizeMD(solver.username),
solver: solver.username,
token: order.buyer_dispute_token,
})
);
await ctx.telegram.sendMessage(
seller.tg_id,
ctx.i18n.t('dispute_solver', {
solver: sanitizeMD(solver.username),
solver: solver.username,
token: order.seller_dispute_token,
})
);
Expand Down

0 comments on commit b2de920

Please sign in to comment.