make json parsing nonstrict
This commit is contained in:
parent
4d854e5af8
commit
a12a9ae74f
|
@ -82,7 +82,7 @@ data class ApiMessage(
|
||||||
|
|
||||||
|
|
||||||
fun decode(json: String): ApiMessage {
|
fun decode(json: String): ApiMessage {
|
||||||
return JSON.parse(Companion, json)
|
return JSON.nonstrict.parse(Companion, json)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue