Skip to content

Commit

Permalink
Fix conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
norkans7 committed Dec 4, 2023
1 parent 6689928 commit 7ab4abb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion handlers/meta/handlers.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 7ab4abb

Please sign in to comment.