Update documentation and list of known errors

Closes #3151.
This commit is contained in:
Lonami Exo
2021-09-11 11:02:10 +02:00
parent 28d3d4b122
commit 3f5f5dbe48
5 changed files with 20 additions and 1 deletions

View File

@@ -482,6 +482,16 @@ class DialogMethods:
Creates a `Conversation <telethon.tl.custom.conversation.Conversation>`
with the given entity.
.. note::
This Conversation API has certain shortcomings, such as lacking
persistence, poor interaction with other event handlers, and
overcomplicated usage for anything beyond the simplest case.
If you plan to interact with a bot without handlers, this works
fine, but when running a bot yourself, you may instead prefer
to follow the advice from https://stackoverflow.com/a/62246569/.
This is not the same as just sending a message to create a "dialog"
with them, but rather a way to easily send messages and await for
responses or other reactions. Refer to its documentation for more.