Universally initialize max_thread_message_id.

This commit is contained in:
levlam 2023-03-07 18:22:39 +03:00
parent 25154f1ee7
commit 4803cf970d

View File

@ -21559,7 +21559,6 @@ Status MessagesManager::view_messages(DialogId dialog_id, vector<MessageId> mess
// get information about thread of the messages
MessageId top_thread_message_id;
MessageId max_thread_message_id;
if (source == MessageSource::MessageThreadHistory) {
if (dialog_id.get_type() != DialogType::Channel || is_broadcast_channel(dialog_id)) {
return Status::Error(400, "There are no message threads in the chat");
@ -21581,14 +21580,18 @@ Status MessagesManager::view_messages(DialogId dialog_id, vector<MessageId> mess
}
} else {
top_thread_message_id = m->top_thread_message_id;
}
}
}
}
MessageId max_thread_message_id;
if (top_thread_message_id.is_valid()) {
const auto *top_m = get_message_force(d, top_thread_message_id, "view_messages 2");
if (top_m != nullptr && !top_m->reply_info.is_comment_) {
max_thread_message_id = top_m->reply_info.max_message_id_;
}
}
}
}
}
// get forum topic identifier for the messages
MessageId forum_topic_id;