2
0
mirror of https://github.com/pyrogram/pyrogram synced 2025-09-05 08:45:13 +00:00

Fix links

This commit is contained in:
Dan
2018-05-02 16:00:48 +02:00
parent 3d3c1e2c0e
commit 32336a9bda
2 changed files with 6 additions and 5 deletions

View File

@@ -38,7 +38,7 @@ class Filters:
outgoing = build("Outgoing", lambda _, m: m.outgoing)
"""Filter outgoing messages."""
text = build("Text", lambda _, m: bool(m.text and not m.text.startswith("/")))
text = build("Text", lambda _, m: bool(m.text))
"""Filter text messages."""
reply = build("Reply", lambda _, m: bool(m.reply_to_message))