feat: add json5 support to net.jsonDecode

This commit is contained in:
Erica Marigold 2024-02-25 18:20:17 +05:30
parent 84af0f7a60
commit 532409aa25
No known key found for this signature in database
GPG key ID: 2768CC0C23D245D1

View file

@ -63,7 +63,8 @@ fn net_json_encode<'lua>(
}
fn net_json_decode<'lua>(lua: &'lua Lua, json: LuaString<'lua>) -> LuaResult<LuaValue<'lua>> {
EncodeDecodeConfig::from(EncodeDecodeFormat::Json).deserialize_from_string(lua, json)
// NOTE: JSON is valid JSON5, so we use the JSON5 decoder here
EncodeDecodeConfig::from(EncodeDecodeFormat::Json5).deserialize_from_string(lua, json)
}
async fn net_request<'lua>(lua: &'lua Lua, config: RequestConfig) -> LuaResult<LuaTable<'lua>>