Toddobryan
06/27/2019, 6:12 AMJsonElement.booleanOrNull
doesn't check to see whether isString
is true, so parse("true").booleanOrNull
and parse("\"true\"").booleanOrNull
both return true
, even though I think the secord one should return null
.sandwwraith
06/27/2019, 1:18 PM