Replaces the == true string with a strconv.ParseBool to allow all boolean string variations:
ParseBool returns the boolean value represented by the string. It accepts 1, t, T, TRUE, true, True, 0, f, F, FALSE, false, False. Any other value returns an error.
Replaces the
== true
string with a strconv.ParseBool to allow all boolean string variations: