mirror of https://github.com/procxx/kepka.git
Don't suggest to archive proxy sponsor.
This commit is contained in:
parent
5c9a907c88
commit
7669b8e12b
|
@ -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() {
|
||||||
|
|
Loading…
Reference in New Issue