Fix local online status fadeout once again.
This commit is contained in:
parent
d0fff1611c
commit
7d9b4e1e03
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue