Skip to content

Commit d9f81dc

Browse files
committed
Fix payment description
1 parent 51f9960 commit d9f81dc

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

handlers/max/topup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ async def handle_max_topup_callback(callback: aiomax.Callback, bot: aiomax.Bot)
8383
logging.warning("Max topup: duplicate callback for order_id: %s", order_id)
8484
return
8585

86-
description = f"Пополнение баланса на {amount} "
86+
description = f"Пополнение баланса на {amount} руб"
8787
amount_kopeks = int(Decimal(amount) * 100)
8888

8989
try:

handlers/telegram/topup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ async def handle_topup_callback(update: Update, context: ContextTypes.DEFAULT_TY
135135
logging.warning("Duplicate topup callback for order_id: %s", order_id)
136136
return
137137

138-
description = f"Пополнение баланса на {amount} "
138+
description = f"Пополнение баланса на {amount} руб"
139139
amount_kopeks = int(Decimal(amount) * 100)
140140

141141
try:

0 commit comments

Comments
 (0)