fix a few bugs that claude pointed out
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2026-05-12 15:58:45 -04:00
parent a7c5e1708c
commit c45a2e1057
3 changed files with 6 additions and 4 deletions
+2 -2
View File
@@ -39,8 +39,8 @@ func getPublisher(publishers []client.Publishers) string {
func getAuthors(authors []client.Authors) []string {
ret := make([]string, len(authors))
for _, author := range authors {
ret = append(ret, author.Name)
for i, author := range authors {
ret[i] = author.Name
}
return ret
}