Custom amount and deletion fixes

This commit is contained in:
Boris Kovalskii
2025-07-24 13:34:07 +10:00
committed by GitHub
parent 18df153ee0
commit 077806eb80
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -204,7 +204,7 @@ async def handle_custom_amount_input(message: types.Message, state: FSMContext):
return
await state.update_data(amount=amount)
payment_url = await generate_kassai_payment_link(amount, callback_query.message.chat.id, method)
payment_url = await generate_kassai_payment_link(amount, message.chat.id, method)
confirm_keyboard = InlineKeyboardMarkup(
inline_keyboard=[
+1
View File
@@ -1,5 +1,6 @@
import hashlib
import json
import bot
from aiohttp import web
from database import add_payment, async_session_maker, update_balance
from handlers.payments.utils import send_payment_success_notification