From 1cc9a52461e8a4cfcb9dbf56425c3e91a118802d Mon Sep 17 00:00:00 2001 From: John Preston Date: Wed, 18 Aug 2021 17:52:23 +0300 Subject: [PATCH] Fix my speaking status freeze in voice chats. --- Telegram/SourceFiles/calls/group/calls_group_call.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Telegram/SourceFiles/calls/group/calls_group_call.cpp b/Telegram/SourceFiles/calls/group/calls_group_call.cpp index bcb5654bb..24922f9cd 100644 --- a/Telegram/SourceFiles/calls/group/calls_group_call.cpp +++ b/Telegram/SourceFiles/calls/group/calls_group_call.cpp @@ -2783,6 +2783,8 @@ void GroupCall::checkLastSpoke() { || muted() == MuteState::Active || muted() == MuteState::PushToTalk) { real->applyLastSpoke(ssrc, when, now); + } else { + real->applyLastSpoke(ssrc, { crl::time(), crl::time() }, now); } } _lastSpoke = std::move(list);