3
0
mirror of https://github.com/ergochat/ergo.git synced 2024-12-22 18:52:41 +01:00
Improve debuggability of some config deserialization errors
This commit is contained in:
Shivaram Lingamneni 2021-02-26 01:10:21 -05:00
parent 640572e151
commit 29666107ab

View File

@ -162,6 +162,8 @@ func (ps *PersistentStatus) UnmarshalYAML(unmarshal func(interface{}) error) err
result = PersistentDisabled result = PersistentDisabled
} }
*ps = result *ps = result
} else {
err = fmt.Errorf("invalid value `%s` for server persistence status: %w", orig, err)
} }
return err return err
} }
@ -416,6 +418,8 @@ func (nr *NickEnforcementMethod) UnmarshalYAML(unmarshal func(interface{}) error
method, err := nickReservationFromString(orig) method, err := nickReservationFromString(orig)
if err == nil { if err == nil {
*nr = method *nr = method
} else {
err = fmt.Errorf("invalid value `%s` for nick enforcement method: %w", orig, err)
} }
return err return err
} }