Skip to content

Commit

Permalink
Fixed date property of export
Browse files Browse the repository at this point in the history
  • Loading branch information
LarsLrn committed Feb 5, 2024
1 parent 24531f6 commit 53254d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion functions/src/pub-sub/export-user-data.pub-sub.ts
Expand Up @@ -42,7 +42,7 @@ interface ConsolidatedUsers {
*/
function transformUserData(userDataMap: ConsolidatedUsers, userIdBlacklist: string[]): GlobalSummary {
const globalSummary: GlobalSummary = {
date: new Date().getTime() / 1000,
date: new Date().getTime(),
daysPeriod: 1,
countries: [],
};
Expand Down

0 comments on commit 53254d3

Please sign in to comment.