Skip to content

Commit

Permalink
fix(handle-callback): fix creating firestore Timestamp (must set ns)
Browse files Browse the repository at this point in the history
  • Loading branch information
leomp12 committed Apr 27, 2020
1 parent 988b395 commit 51dfac7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/methods/handle-callback.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const handleCallback = client => {
authentication_permissions: JSON.stringify(authentication.permissions),
store_id: storeId,
created_at: Timestamp.now(),
updated_at: new Timestamp(1500000000) // Jul 13 2017
updated_at: new Timestamp(1500000000, 0) // Jul 13 2017
}
} else {
values = [
Expand Down

0 comments on commit 51dfac7

Please sign in to comment.