From af899e6773e779595edf176c5ee4f4a18e7f292d Mon Sep 17 00:00:00 2001 From: Samandar Murodjonov <30470723+SamixGroup@users.noreply.github.com> Date: Tue, 4 Nov 2025 08:34:51 +0900 Subject: [PATCH] Update feed_update call to include bot parameter (#1733) bot parameter is required in dispatcher.feed_update method but is not present in the documentation --- docs/dispatcher/webhook.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/dispatcher/webhook.rst b/docs/dispatcher/webhook.rst index ec2612ff..73bcddbc 100644 --- a/docs/dispatcher/webhook.rst +++ b/docs/dispatcher/webhook.rst @@ -115,7 +115,7 @@ or :meth:`aiogram.dispatcher.dispatcher.Dispatcher.feed_update` methods. .. code-block:: python update = Update.model_validate(await request.json(), context={"bot": bot}) - await dispatcher.feed_update(update) + await dispatcher.feed_update(bot, update) .. note::