diff --git a/td/telegram/ForumTopicManager.cpp b/td/telegram/ForumTopicManager.cpp index 5b0d1bb2e..cf65425ed 100644 --- a/td/telegram/ForumTopicManager.cpp +++ b/td/telegram/ForumTopicManager.cpp @@ -326,6 +326,9 @@ td_api::object_ptr ForumTopicManager::get_update_f } void ForumTopicManager::send_update_forum_topic_info(DialogId dialog_id, const ForumTopicInfo *topic_info) const { + if (td_->auth_manager_->is_bot()) { + return; + } send_closure(G()->td(), &Td::send_update, get_update_forum_topic_info(dialog_id, topic_info)); }