diff --git a/handlers/meta/handlers.go b/handlers/meta/handlers.go index a63f85d68..8c051d339 100644 --- a/handlers/meta/handlers.go +++ b/handlers/meta/handlers.go @@ -411,7 +411,7 @@ func (h *handler) processFacebookInstagramPayload(ctx context.Context, channel c var date time.Time - if msg.Timestamp >= 10_000_000_000 { + if msg.Timestamp >= 100_000_000_000 { // create our date from the timestamp (they give us millis, arg is nanos) date = time.Unix(0, msg.Timestamp*1000000).UTC() } else {