tangled
alpha
login
or
join now
mary.my.id
/
aglais
personal web client for Bluesky
typescript
solidjs
bluesky
atcute
4
fork
atom
overview
issues
pulls
pipelines
fix: now
mary.my.id
2 months ago
84ead385
dfb881f5
verified
This commit was signed with the committer's
known signature
.
mary.my.id
SSH Key Fingerprint:
SHA256:ZlTP/auFSGpGnaoDg4mCTG1g9OZvXp62jWR4c6H4O3c=
options
unified
split
Changed files
+4
src
lib
intl
time.ts
+4
src/lib/intl/time.ts
···
22
22
const delta = now - time;
23
23
24
24
if (delta < 0 || delta > WEEK) {
25
25
+
if (delta < 0 && delta > -NOW) {
26
26
+
return `now`;
27
27
+
}
28
28
+
25
29
if (now > endOfYear) {
26
30
const date = new Date();
27
31