Skip to content

Commit

Permalink
Merge pull request #544 from fserb/patch-1
Browse files Browse the repository at this point in the history
Fix getGitDate
  • Loading branch information
oscarotero authored Jan 1, 2024
2 parents 49fce98 + 05badb5 commit d030472
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/utils/date.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export function getGitDate(
const str = new TextDecoder().decode(stdout);

if (str) {
return parseDate(parseInt(str));
return parseDate(parseInt(str) * 1000);
}
}

Expand Down

0 comments on commit d030472

Please sign in to comment.