check if config has any colors

This commit is contained in:
strogiyotec 2020-09-07 21:20:42 -07:00
parent f2d98027e5
commit e5ff0c7e98
1 changed files with 8 additions and 2 deletions

10
util.go
View File

@ -63,12 +63,18 @@ func summerizeTasks(config *Config, tasks []*Task) {
fmt.Printf(" ")
}
// user specified color mapping exists
if color := config.Colors.Get(tag); color != nil {
color.Printf("%s", tag)
if config.Colors != nil {
if color := config.Colors.Get(tag); color != nil {
color.Printf("%s", tag)
} else {
// no color mapping for tag
fmt.Printf("%s", tag)
}
} else {
// no color mapping
fmt.Printf("%s", tag)
}
}
fmt.Printf("]")
}