Fix local online status fadeout once again.

This commit is contained in:
John Preston 2024-01-19 11:44:33 +04:00
parent d0fff1611c
commit 7d9b4e1e03
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ std::optional<QString> OnlineTextCommon(LastseenStatus status, TimeId now) {
return tr::lng_status_online(tr::now);
} else if (status.isLongAgo()) {
return tr::lng_status_offline(tr::now);
} else if (status.isRecently() || status.isHiddenByMe()) {
} else if (status.isRecently() || status.isHidden()) {
return tr::lng_status_recently(tr::now);
} else if (status.isWithinWeek()) {
return tr::lng_status_last_week(tr::now);