mirror of
https://github.com/aiogram/aiogram.git
synced 2025-12-12 10:11:52 +00:00
Fix Message.send_copy method for stories (#1287)
* Fix `Message.send_copy` method for stories Fixed an issue with the `Message.send_copy` method, which was not functioning properly with story-type messages. The `ForwardMessage` logic has been added to the method to enable copying of stories, in addition to other types. Tests and documentation have also been updated to reflect these changes. * Typo fix
This commit is contained in:
parent
6eb5ef2606
commit
e1be9dd668
4 changed files with 12 additions and 2 deletions
|
|
@ -4,14 +4,14 @@ Dispatcher
|
|||
|
||||
Dispatcher is root :obj:`Router` and in code Dispatcher can be used directly for routing updates or attach another routers into dispatcher.
|
||||
|
||||
Here is only listed base information about Dispatcher. All about writing handlers, filters and etc. you can found in next pages:
|
||||
Here is only listed base information about Dispatcher. All about writing handlers, filters and etc. you can find in next pages:
|
||||
|
||||
- :ref:`Router <Router>`
|
||||
- :ref:`Filtering events`
|
||||
|
||||
|
||||
.. autoclass:: aiogram.dispatcher.dispatcher.Dispatcher
|
||||
:members: __init__, feed_update, feed_raw_update, feed_webhook_update, start_polling, run_polling
|
||||
:members: __init__, feed_update, feed_raw_update, feed_webhook_update, start_polling, run_polling, stop_polling
|
||||
|
||||
|
||||
Simple usage
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue