Fix local online finishing.

This commit is contained in:
John Preston
2024-01-18 21:19:07 +04:00
parent 981909e567
commit f53b64bc72
2 changed files with 2 additions and 1 deletions
@@ -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()) {
} else if (status.isRecently() || status.isHiddenByMe()) {
return tr::lng_status_recently(tr::now);
} else if (status.isWithinWeek()) {
return tr::lng_status_last_week(tr::now);