mirror of
https://github.com/ergochat/ergo.git
synced 2024-11-10 22:19:31 +01:00
fix StringToBool (thanks @wrmsr)
This commit is contained in:
parent
c34477c937
commit
e59aa43225
@ -51,9 +51,9 @@ func ArgsToStrings(maxLength int, arguments []string, delim string) []string {
|
||||
|
||||
func StringToBool(str string) (result bool, err error) {
|
||||
switch strings.ToLower(str) {
|
||||
case "on", "true", "t", "yes", "y", "disabled":
|
||||
case "on", "true", "t", "yes", "y", "enabled":
|
||||
result = true
|
||||
case "off", "false", "f", "no", "n", "enabled":
|
||||
case "off", "false", "f", "no", "n", "disabled":
|
||||
result = false
|
||||
default:
|
||||
err = ErrInvalidParams
|
||||
|
Loading…
Reference in New Issue
Block a user