diff --git a/td/telegram/MessageReplyInfo.cpp b/td/telegram/MessageReplyInfo.cpp index 4091761d9..b1ef96377 100644 --- a/td/telegram/MessageReplyInfo.cpp +++ b/td/telegram/MessageReplyInfo.cpp @@ -61,6 +61,10 @@ MessageReplyInfo::MessageReplyInfo(tl_object_ptr & } bool MessageReplyInfo::need_update_to(const MessageReplyInfo &other) const { + if (other.is_empty() && !is_empty()) { + // ignore updates to empty reply info, because we will hide the info ourselves + // return true; + } if (other.pts < pts) { return false; }