Remove wrong CHECK. It is wrong to compare orders with different keep_active_date.

This commit is contained in:
levlam 2021-04-08 01:23:04 +03:00
parent a0dcd2d9c2
commit 94368950a6

View File

@ -1731,7 +1731,6 @@ void GroupCallManager::process_group_call_participants(
for (auto participant_it = group_participants.begin(); participant_it != group_participants.end();) {
auto &participant = *participant_it;
if (old_participant_dialog_ids.count(participant.dialog_id) == 0) {
CHECK(!participant.order.is_valid() || participant.order >= min_order);
++participant_it;
continue;
}