Do not add messages sent via bot to list of active live locations.

GitOrigin-RevId: fdd83122b83f2b20d2ab460c9d27dcf320a53c4d
This commit is contained in:
levlam 2019-11-05 19:20:13 +03:00
parent a0fa744735
commit 7de4f8b078

View File

@ -14775,7 +14775,8 @@ void MessagesManager::on_load_active_live_location_messages_finished() {
void MessagesManager::try_add_active_live_location(DialogId dialog_id, const Message *m) {
CHECK(m != nullptr);
if (m->content->get_type() != MessageContentType::LiveLocation || m->is_failed_to_send) {
if (m->content->get_type() != MessageContentType::LiveLocation || m->is_failed_to_send ||
m->via_bot_user_id.is_valid() || m->forward_info != nullptr) {
return;
}