1
0
Fork 0

Catch possible errors when setting theme colors

This commit is contained in:
makeworld 2021-12-29 12:06:40 -05:00
parent cabc0660fd
commit 1f1774a18a
1 changed files with 6 additions and 2 deletions

View File

@ -384,7 +384,9 @@ func Init() error {
if !ok {
return fmt.Errorf(`include: value for "%s" is not a string: %v`, k2, v2)
}
setColor(k2, colorStr)
if err := setColor(k2, colorStr); err != nil {
return err
}
}
}
for k, v := range configTheme.AllSettings() {
@ -392,7 +394,9 @@ func Init() error {
if !ok {
return fmt.Errorf(`value for "%s" is not a string: %v`, k, v)
}
setColor(k, colorStr)
if err := setColor(k, colorStr); err != nil {
return err
}
}
}
if viper.GetBool("a-general.color") {