aboutsummaryrefslogtreecommitdiff
path: root/packages/server/src/routes/api/v1/repo/map.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/server/src/routes/api/v1/repo/map.ts')
-rw-r--r--packages/server/src/routes/api/v1/repo/map.ts6
1 files changed, 4 insertions, 2 deletions
diff --git a/packages/server/src/routes/api/v1/repo/map.ts b/packages/server/src/routes/api/v1/repo/map.ts
index a3d0aa8..0544e4f 100644
--- a/packages/server/src/routes/api/v1/repo/map.ts
+++ b/packages/server/src/routes/api/v1/repo/map.ts
@@ -6,9 +6,11 @@ export async function commitMap(commit: Commit): Promise<LogCommit> {
return <LogCommit>{
id: commit.id,
author: {
- name: commit.author.name,
- email: commit.author.email
+ name: commit.author().name,
+ email: commit.author().email,
+ fingerprint: await commit.author().fingerprint().catch(() => null)
},
+ isSigned: await commit.isSigned(),
message: commit.message,
date: commit.date,
insertions: stats.insertions,