2
0
mirror of https://github.com/kotatogram/kotatogram-desktop synced 2025-09-05 09:05:14 +00:00

Support bots as top promoted dialog entries.

This commit is contained in:
John Preston
2020-04-29 13:27:54 +04:00
parent 042ed8f54a
commit b6e184d0c8
5 changed files with 40 additions and 33 deletions

View File

@@ -3732,12 +3732,12 @@ void Session::setTopPromoted(
history->requestChatListMessage();
Notify::peerUpdatedDelayed(
_topPromoted,
Notify::PeerUpdate::Flag::ChannelPromotedChanged);
Notify::PeerUpdate::Flag::TopPromotedChanged);
}
if (changed && old) {
Notify::peerUpdatedDelayed(
old,
Notify::PeerUpdate::Flag::ChannelPromotedChanged);
Notify::PeerUpdate::Flag::TopPromotedChanged);
}
}
}