Do not warn on attaching new message to the next yet unsent message. Could happen when replying a message received through getMessage.
GitOrigin-RevId: c4c77ae81eab08cce855ba32a5756477340b66af
This commit is contained in:
parent
d7efe13082
commit
356051f59d
@ -26418,8 +26418,10 @@ MessagesManager::Message *MessagesManager::add_message_to_dialog(Dialog *d, uniq
|
|||||||
if (next_message != nullptr) {
|
if (next_message != nullptr) {
|
||||||
CHECK(!next_message->have_previous);
|
CHECK(!next_message->have_previous);
|
||||||
LOG(INFO) << "Attach " << message_id << " to the next " << next_message->message_id;
|
LOG(INFO) << "Attach " << message_id << " to the next " << next_message->message_id;
|
||||||
LOG_IF(ERROR, from_update) << "Attach " << message_id << " from " << source << " to the next "
|
if (from_update && !next_message->message_id.is_yet_unsent()) {
|
||||||
<< next_message->message_id << " in " << dialog_id;
|
LOG(ERROR) << "Attach " << message_id << " from " << source << " to the next " << next_message->message_id
|
||||||
|
<< " in " << dialog_id;
|
||||||
|
}
|
||||||
message->have_next = true;
|
message->have_next = true;
|
||||||
message->have_previous = next_message->have_previous;
|
message->have_previous = next_message->have_previous;
|
||||||
next_message->have_previous = true;
|
next_message->have_previous = true;
|
||||||
|
Reference in New Issue
Block a user