3
0
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:
Shivaram Lingamneni 2020-02-19 00:54:42 -05:00
parent c34477c937
commit e59aa43225

View File

@ -51,9 +51,9 @@ func ArgsToStrings(maxLength int, arguments []string, delim string) []string {
func StringToBool(str string) (result bool, err error) { func StringToBool(str string) (result bool, err error) {
switch strings.ToLower(str) { switch strings.ToLower(str) {
case "on", "true", "t", "yes", "y", "disabled": case "on", "true", "t", "yes", "y", "enabled":
result = true result = true
case "off", "false", "f", "no", "n", "enabled": case "off", "false", "f", "no", "n", "disabled":
result = false result = false
default: default:
err = ErrInvalidParams err = ErrInvalidParams