Skip to content

Commit 4e250d4

Browse files
committed
fix: fix build
1 parent a9ae3b3 commit 4e250d4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

plugins/development/plugin-git/src/node/utils/getCommits.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,13 +63,13 @@ export const getRawCommits = async (
6363
.split(`${SPLIT_CHAR}\n`)
6464
.filter(Boolean)
6565
.map((rawString) => {
66-
const [hash, author, email, date, message, refs, body] = rawString
66+
const [hash, author, email, time, message, refs, body] = rawString
6767
.split('|')
6868
.map((v) => v.trim())
6969
return {
7070
filepath,
7171
hash,
72-
date: Number.parseInt(date, 10) * 1000,
72+
time: Number.parseInt(time, 10) * 1000,
7373
message,
7474
body,
7575
refs,

0 commit comments

Comments
 (0)