Removed call button from history with service user.

This commit is contained in:
23rd 2023-09-29 13:09:45 +03:00 committed by John Preston
parent 5ef48cac9c
commit 2b3f17e982
1 changed files with 3 additions and 1 deletions

View File

@ -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;