mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-06-05 06:33:57 +02:00
Send speaking typings in channels.
This commit is contained in:
parent
76e08af26a
commit
d392633b90
1 changed files with 4 additions and 1 deletions
|
@ -65,7 +65,10 @@ void SendProgressManager::update(
|
||||||
SendProgressType type,
|
SendProgressType type,
|
||||||
int progress) {
|
int progress) {
|
||||||
const auto peer = history->peer;
|
const auto peer = history->peer;
|
||||||
if (peer->isSelf() || (peer->isChannel() && !peer->isMegagroup())) {
|
if (peer->isSelf()
|
||||||
|
|| (peer->isChannel()
|
||||||
|
&& !peer->isMegagroup()
|
||||||
|
&& type != SendProgressType::Speaking)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue