Log in here to report bugs or suggest features. Please enter your phone number in the international format and we will send a confirmation message to your account via Telegram.
We've just sent you a message.
Please confirm access via Telegram
When a user puts a reaction on a message for the first time (i.e. the message hasn't received any reaction yet), the MTProto sends to all bots in the group an update that the message has been edited. Long polling doesn't have such a bug and works like a charm. Webhooks haven't been tested yet.
It seems to be a bug and not a feature since bots are not supposed to see the reactions, and such behavior confuses: a bot which is supposed to be triggered by a message edit gets triggered by a reaction instead, and there is absolutely no way to determine that the update was caused by reaction (since, again, bots cannot work with reactions).
I emphasise that MTProto only sends an update if it is the first reaction on the message.
I also emphasise that the problem is not related to a specific library of a certain language. It concerns the server side.
from pyrogram import Client, filters
app = Client("test", api_id=12345, api_hash='abcdefg12345')
@app.on_edited_message()
async def notification(client, message):
await message.reply("This message has been edited!")
app.run()
MTProto never sends an update caused by any reaction to the bot and the latter remains silent about it.
The problem is on the server side, so the device info doesn't matter. Excuse me for tagging Telegram Desktop as the platform. This place doesn't seem to be supposed for server-related issues.
---
[for BOT updates] Divide the action "edited message" on: "reaction" and "edited message"
When you add a reaction, any message gets the status "edited message". Don't combine the two conditions, separate them.
Why does this need to be fixed?
Sometimes abusers join chats, post normal images, and then, a couple of weeks later, change the messages to banned content and the group gets blocked. There are bots that catch such actions and delete the modified messages, but this prevents people from posting reactions to old messages because reactions = modified messages and they are deleted.
Example
A user edited his own message - (trigger) msg_edit_1
A user gave another user a reaction - (trigger) msg_edit_2