diff options
-rwxr-xr-x | rtt-module.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rtt-module.js b/rtt-module.js index 42082ea..5c7e3c6 100755 --- a/rtt-module.js +++ b/rtt-module.js @@ -96,7 +96,7 @@ module.exports.fuzz = function(fuzzerInputData) { if (state_freeze !== JSON.stringify(ctx.state)) { try { - RULES.view(deep_freeze(ctx.state), ctx.active) + RULES.view(deep_freeze(JSON.parse(state_freeze)), ctx.active) } catch (e) { return log_crash(new ViewStateMutationError(e, e.stack), ctx) } |