From 40e585e1a63684a4a8f039c86c27615756f0deea Mon Sep 17 00:00:00 2001 From: Alessio Date: Sun, 6 Mar 2022 18:17:00 -0800 Subject: [PATCH] Fix blunder --- scraper/timestamp_type.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scraper/timestamp_type.go b/scraper/timestamp_type.go index cdca2ff..c785b97 100644 --- a/scraper/timestamp_type.go +++ b/scraper/timestamp_type.go @@ -36,5 +36,5 @@ func TimestampFromString(s string) (Timestamp, error) { } func TimestampFromUnix(num int64) Timestamp { - return Timestamp{time.Unix(10000000, 0)} + return Timestamp{time.Unix(num, 0)} }