fix: bug with how git authors were handled in tui

This commit is contained in:
Slug-Boi
2025-05-27 14:49:36 +02:00
committed by Theis
parent 7a0e734ba8
commit b0bf47e794
+7
View File
@@ -460,6 +460,13 @@ func Entry() []string {
} }
for i := range selected { for i := range selected {
short := dupProtect[i] short := dupProtect[i]
if short == "" {
split := strings.Split(i, " - ")
name := split[0]
email := split[1]
utils.TempAddUser(name, email)
short = name
}
if negation { if negation {
short = "^" + short short = "^" + short
} }