Skip to content

Commit 6c6065b

Browse files
fix: cast Author.Name to string
1 parent ed291b3 commit 6c6065b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

github/manager.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ func hydrateCommits(q *Query, specificChecksNames string, sep string) []Commit {
167167
Parents: parents,
168168
StatusSuccess: statusSuccess,
169169
AuthoredDate: edge.Node.AuthoredDate.Time,
170-
AuthorName: edge.Node.Author.Name,
170+
AuthorName: string(edge.Node.Author.Name),
171171
})
172172
}
173173

0 commit comments

Comments
 (0)