Skip to content

Commit 5c16e8d

Browse files
Merge remote-tracking branch 'origin/main' into changes-since-refactoring
2 parents ca4268a + 4bacf5f commit 5c16e8d

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

pkg/git/GitFormatter.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ func parseFormattedLogOutput(out string) ([]GitCommitFormat, error) {
6161

6262
logOut = logOut[1 : len(logOut)-2] // trim surround characters (surrounding quotes and trailing comma)
6363
logOut = strings.Join([]string{"[", "]"}, logOut)
64+
logOut = strings.ReplaceAll(logOut, "\\x", "")
6465

6566
var gitCommitFormattedList []GitCommitFormat
6667
err := json.Unmarshal([]byte(logOut), &gitCommitFormattedList)

0 commit comments

Comments
 (0)