From 3f6664c82add4a9324a367da813051306e7c4649 Mon Sep 17 00:00:00 2001 From: John Preston Date: Wed, 24 Jun 2015 21:40:32 +0300 Subject: [PATCH] version 0.8.30.dev fixed commands list --- Telegram/SourceFiles/dropdown.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Telegram/SourceFiles/dropdown.cpp b/Telegram/SourceFiles/dropdown.cpp index 553882543..cf7dbc30b 100644 --- a/Telegram/SourceFiles/dropdown.cpp +++ b/Telegram/SourceFiles/dropdown.cpp @@ -2794,8 +2794,10 @@ void MentionsDropdown::updateFiltered(bool toDown) { for (MentionRows::const_iterator i = _chat->lastAuthors.cbegin(), e = _chat->lastAuthors.cend(); i != e; ++i) { UserData *user = *i; if (!user->botInfo) continue; + if (!bots.contains(user)) continue; if (!user->botInfo->inited) App::api()->requestFullPeer(user); if (user->botInfo->commands.isEmpty()) continue; + bots.remove(user); for (int32 j = 0, l = user->botInfo->commands.size(); j < l; ++j) { if (_filter.size() > 1) { QString toFilter = (hasUsername || botStatus == 0 || botStatus == 2) ? user->botInfo->commands.at(j).command + '@' + user->username : user->botInfo->commands.at(j).command; @@ -2803,9 +2805,6 @@ void MentionsDropdown::updateFiltered(bool toDown) { } crows.push_back(qMakePair(user, user->botInfo->commands.at(j))); } - if (!bots.isEmpty()) { - bots.remove(user); - } } } if (!bots.isEmpty()) {