web: use last-seen-recently fallback in private chat status
Some checks are pending
CI / test (push) Has started running

This commit is contained in:
2026-03-08 22:47:16 +03:00
parent 9f8bcb5724
commit 8fcd2156c6
4 changed files with 5 additions and 5 deletions

View File

@@ -301,7 +301,7 @@ function headerMetaLabel(chat: {
if (chat.counterpart_last_seen_at) {
return `last seen ${formatLastSeen(chat.counterpart_last_seen_at)}`;
}
return "offline";
return "last seen recently";
}
if (chat.type === "group") {
const members = chat.members_count ?? 0;