Added empty callback

This commit is contained in:
Profitroll 2023-01-17 14:37:36 +01:00
parent aebe804b58
commit c1ee988106
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
from app import app
from pyrogram import filters
from pyrogram.types import CallbackQuery
from pyrogram.client import Client
from modules.utils import locale
# Callback empty ===============================================================================================================
@app.on_callback_query(filters.regex("nothing"))
async def callback_query_nothing(app: Client, clb: CallbackQuery):
await clb.answer(text=locale("nothing", "callback", locale=clb.from_user))
# ==============================================================================================================================