tracks lexicons and how many times they appeared on the jetstream

Revert "feat(server): convert microsecond timestamps to seconds"

This reverts commit 5cc9c68cdef616b5227eea2d96ba01048edf2fab.

ptr.pet 0818125d f434daf7

verified
+1 -6
+1 -6
server/src/main.rs
··· 322 322 to.ingest_events(hits.map(|hit| { 323 323 count += 1; 324 324 let hit = hit.expect("cant decode hit"); 325 - let mut timestamp = hit.timestamp; 326 - // check if timestamp is microseconds, convert to seconds if it is 327 - if timestamp > 10_000_000_000 { 328 - timestamp /= 1_000_000; 329 - } 330 325 EventRecord { 331 326 nsid: nsid.to_smolstr(), 332 - timestamp, 327 + timestamp: hit.timestamp, 333 328 deleted: hit.deser().unwrap().deleted, 334 329 } 335 330 }))