Search by hashtag inside groups.

This commit is contained in:
John Preston 2019-01-31 15:51:19 +03:00
parent 25b5027dc7
commit a7f4ac2797
1 changed files with 2 additions and 5 deletions

View File

@ -154,14 +154,11 @@ void searchByHashtag(const QString &tag, PeerData *inPeer) {
if (const auto m = App::main()) {
Ui::hideSettingsAndLayer();
Core::App().hideMediaView();
if (inPeer && (!inPeer->isChannel() || inPeer->isMegagroup())) {
inPeer = nullptr;
}
m->searchMessages(
tag + ' ',
(inPeer
(inPeer && !inPeer->isUser())
? inPeer->owner().history(inPeer).get()
: Dialogs::Key()));
: Dialogs::Key());
}
}