Fix TtlNode operator==.

This commit is contained in:
levlam 2024-05-14 21:09:58 +03:00
parent 6fe43311cb
commit c785ae579c

View File

@ -3177,7 +3177,7 @@ class MessagesManager final : public Actor {
}
bool operator==(const TtlNode &other) const {
return message_full_id_ == other.message_full_id_;
return message_full_id_ == other.message_full_id_ && by_ttl_period_ == other.by_ttl_period_;
}
};
struct TtlNodeHash {