Don't suggest to archive proxy sponsor.

This commit is contained in:
John Preston 2019-05-01 13:41:56 +04:00
parent 5c9a907c88
commit 7669b8e12b
1 changed files with 5 additions and 3 deletions

View File

@ -200,12 +200,14 @@ bool Filler::showInfo() {
bool Filler::showToggleArchived() { bool Filler::showToggleArchived() {
if (_source != PeerMenuSource::ChatsList) { if (_source != PeerMenuSource::ChatsList) {
return false; return false;
}
const auto history = _peer->owner().historyLoaded(_peer);
if (history && history->useProxyPromotion()) {
return false;
} else if (!_peer->isNotificationsUser()) { } else if (!_peer->isNotificationsUser()) {
return true; return true;
} else if (const auto history = _peer->owner().historyLoaded(_peer)) {
return (history->folder() != nullptr);
} }
return false; return history && (history->folder() != nullptr);
} }
void Filler::addPinToggle() { void Filler::addPinToggle() {