mirror of https://github.com/procxx/kepka.git
Fix huge CPU consumption in the group info profile.
This commit is contained in:
parent
d3c152022c
commit
aa160e775c
|
@ -344,7 +344,7 @@ void PeerListRow::refreshStatus() {
|
||||||
_statusType = StatusType::Online;
|
_statusType = StatusType::Online;
|
||||||
}
|
}
|
||||||
_statusValidTill = getms()
|
_statusValidTill = getms()
|
||||||
+ App::onlineWillChangeIn(user, time);
|
+ App::onlineWillChangeIn(user, time) * 1000LL;
|
||||||
} else if (auto chat = peer()->asChat()) {
|
} else if (auto chat = peer()->asChat()) {
|
||||||
if (!chat->amIn()) {
|
if (!chat->amIn()) {
|
||||||
setStatusText(lang(lng_chat_status_unaccessible));
|
setStatusText(lang(lng_chat_status_unaccessible));
|
||||||
|
|
Loading…
Reference in New Issue