mirror of
https://github.com/lune-org/lune.git
synced 2025-04-04 10:30:54 +01:00
feat: add json5 support to net.jsonDecode
This commit is contained in:
parent
84af0f7a60
commit
532409aa25
1 changed files with 2 additions and 1 deletions
|
@ -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>>
|
||||
|
|
Loading…
Add table
Reference in a new issue