Skip to content

Commit

Permalink
probably make everything work
Browse files Browse the repository at this point in the history
  • Loading branch information
zunda-arrow committed Jun 1, 2024
1 parent 6d7687e commit 2ee1bf8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ func parseConfigFile() (ConfigFile, error) {

for _, line := range contentsLines {
line = strings.TrimSpace(line)
if line[0] == '#' {
if len(line) == 0 || line[0] == '#' {
continue
}

Expand Down

0 comments on commit 2ee1bf8

Please sign in to comment.