Add sanity checks.

This commit is contained in:
levlam 2023-12-04 11:39:48 +03:00
parent 3f00bebf63
commit 1b42476416
1 changed files with 2 additions and 0 deletions

View File

@ -7911,6 +7911,7 @@ void MessagesManager::add_pending_channel_update(DialogId dialog_id, tl_object_p
}
return;
}
CHECK(old_pts + pts_count == new_pts); // the update can be applied
}
if (d == nullptr || pts_count > 0) {
@ -18751,6 +18752,7 @@ Result<std::pair<string, bool>> MessagesManager::get_message_link(MessageFullId
sb << separator << "t=" << media_timestamp;
separator = '&';
}
CHECK(separator == '?' || separator == '&');
return std::make_pair(sb.as_cslice().str(), is_public);
}