Closed vincentneo closed 8 months ago
I realised today after triggering removeMessageReaction on a message that:
removeMessageReaction
that the subsequent updateMessageInteractionInfo contains just the message_id and chat_id without interaction_info.
updateMessageInteractionInfo
message_id
chat_id
interaction_info
Does that mean that it is safe to assume that that only happens on the exact scenario in cases such as mentioned above?
Thanks.
It is null if message doesn't have interactions. Currently, it means view_count == 0, forward_count == 0, reply_info == null and no reactions.
view_count == 0
forward_count == 0
reply_info == null
got it, thanks!
I realised today after triggering
removeMessageReaction
on a message that:that the subsequent
updateMessageInteractionInfo
contains just themessage_id
andchat_id
withoutinteraction_info
.Does that mean that it is safe to assume that that only happens on the exact scenario in cases such as mentioned above?
Thanks.