fix bot_init
All checks were successful
Build Docs / changes (push) Successful in 5s
Build Docs / build-docs (push) Has been skipped
Build Docs / deploy-docs (push) Has been skipped

This commit is contained in:
Alexander Kalinovsky
2025-04-12 17:20:27 +07:00
parent 8421d05826
commit 43288698e9

View File

@@ -171,7 +171,7 @@ class QBotApp(Generic[UserType, ConfigType], FastAPI):
url=f"{self.config.TELEGRAM_WEBHOOK_URL}/telegram/webhook", url=f"{self.config.TELEGRAM_WEBHOOK_URL}/telegram/webhook",
drop_pending_updates=True, drop_pending_updates=True,
allowed_updates=self.allowed_updates, allowed_updates=self.allowed_updates,
secret_token=self.webhook_auth_key, secret_token=self.config.TELEGRAM_WEBHOOK_AUTH_KEY,
) )
async def show_form( async def show_form(