mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-04-16 14:17:12 +02:00
Removed call button from history with service user.
This commit is contained in:
parent
5ef48cac9c
commit
2b3f17e982
1 changed files with 3 additions and 1 deletions
|
@ -1101,7 +1101,9 @@ void TopBarWidget::updateControlsVisibility() {
|
|||
const auto callsEnabled = [&] {
|
||||
if (const auto peer = _activeChat.key.peer()) {
|
||||
if (const auto user = peer->asUser()) {
|
||||
return !user->isSelf() && !user->isBot();
|
||||
return !user->isSelf()
|
||||
&& !user->isBot()
|
||||
&& !peer->isServiceUser();
|
||||
}
|
||||
}
|
||||
return false;
|
||||
|
|
Loading…
Add table
Reference in a new issue