pyrogram / tgcrypto

Fast and Portable Cryptography Extension Library for Pyrogram
https://pyrogram.org
GNU Lesser General Public License v3.0
175 stars 41 forks source link

bug filter #13

Closed Alireza-Ghavabesh closed 4 years ago

Alireza-Ghavabesh commented 4 years ago

i want to filter one channel from many channels in my account and i found i can do this with custom filters... . my custom filter look like this:

func(client, message): if message.chat.id == -xxxxxxxxxxxx: return True f = Filters.create(func)

but my filter working for all messages of this channel, no "new incoming messages" i want Filter "just new incoming post" now how i can fix it ?

Alireza-Ghavabesh commented 4 years ago

my problem fixed. This problem was due to inline buttons and comments.