tangled
alpha
login
or
join now
ptr.pet
/
nsid-tracker
tracks lexicons and how many times they appeared on the jetstream
3
fork
atom
overview
issues
pulls
pipelines
fix(client): timestamps are seconds but actually
ptr.pet
5 months ago
86a2eabe
2d367d44
verified
This commit was signed with the committer's
known signature
.
ptr.pet
SSH Key Fingerprint:
SHA256:Abmvag+juovVufZTxyWY8KcVgrznxvBjQpJesv071Aw=
options
unified
split
Changed files
+1
-1
client
src
lib
format.ts
+1
-1
client/src/lib/format.ts
···
3
3
};
4
4
5
5
export const formatTimestamp = (timestamp: number): string => {
6
6
-
return new Date(timestamp).toLocaleString();
6
6
+
return new Date(timestamp * 1000).toLocaleString();
7
7
};