2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-31 06:26:18 +00:00

Read chats only on sending (support).

This commit is contained in:
John Preston
2018-09-28 14:56:21 +03:00
parent 1c79f85d00
commit 20e303d3e6
5 changed files with 21 additions and 5 deletions

View File

@@ -4002,7 +4002,10 @@ bool MainWidget::isActive() const {
}
bool MainWidget::doWeReadServerHistory() const {
return isActive() && !_mainSection && _history->doWeReadServerHistory();
return isActive()
&& !Auth().supportMode()
&& !_mainSection
&& _history->doWeReadServerHistory();
}
bool MainWidget::doWeReadMentions() const {