feat: allow for json files to be opened instead of the weird self made csv format

This commit is contained in:
Slug-Boi
2025-03-29 22:12:52 +01:00
parent f6a1316d4b
commit ec2f361583
4 changed files with 47 additions and 63 deletions
+1 -1
View File
@@ -119,7 +119,7 @@ func add_x_users(excludeMode []string) {
// helper function to select groups of users to exclude in the commit message
func group_selection(group []User, excludeMode []string) []string {
for _, user := range Users {
if !(slices.Contains(group, user)) {
if !(ContainsUser(group, user)) {
excludeMode = append(excludeMode, user.Username)
}
}