diff --git a/crates/core/src/runtime.rs b/crates/core/src/runtime.rs index 3bd4a8a8..b973bd7b 100644 --- a/crates/core/src/runtime.rs +++ b/crates/core/src/runtime.rs @@ -11,8 +11,8 @@ pub(crate) fn new(shared_config: SharedConfig) -> Result { // Due to an issue with our custom serializer and property accesses // we're disabling this temporarily. It will be enabled once we have a // fix forward. - .override_json_parse_and_stringify(true) - .javy_json(true); + .override_json_parse_and_stringify(false) + .javy_json(false); Runtime::new(std::mem::take(config)) }