Skip to content

Commit

Permalink
Missing stuff from util
Browse files Browse the repository at this point in the history
  • Loading branch information
lkarlslund committed May 17, 2022
1 parent c9e53f0 commit 7d47699
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion modules/util/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import (
"unicode"

"github.com/gofrs/uuid"
"github.com/lkarlslund/stringsplus"
"github.com/rs/zerolog/log"
"golang.org/x/text/transform"
"golang.org/x/text/unicode/norm"
Expand All @@ -26,7 +27,7 @@ func cleanfilename(input string) string {
for _, chr := range normalized {
if legalMatch.MatchString(string(chr)) {
if chr == '*' || chr == '/' {
log.Fatal().Msgf("This isnt working")
log.Fatal().Msgf("This isn't working")
}
output += string(chr)
}
Expand Down

0 comments on commit 7d47699

Please sign in to comment.