make json parsing nonstrict

This commit is contained in:
NikkyAI 2018-11-18 02:19:41 +01:00
parent 4d854e5af8
commit a12a9ae74f
1 changed files with 1 additions and 1 deletions

View File

@ -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)
} }
} }
} }