From 3c28c7dd7cdbf4af91b0b4044f03e0877569e3b8 Mon Sep 17 00:00:00 2001 From: toasted-nutbread Date: Sun, 2 Feb 2020 11:22:22 -0500 Subject: [PATCH] Fix init --- ext/bg/js/json-schema.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/bg/js/json-schema.js b/ext/bg/js/json-schema.js index ad6372df..3cf24c35 100644 --- a/ext/bg/js/json-schema.js +++ b/ext/bg/js/json-schema.js @@ -586,8 +586,8 @@ class JsonSchemaTraversalInfo { constructor(value, schema) { this.valuePath = []; this.schemaPath = []; - this.valuePush([null, value]); - this.schemaPush([null, schema]); + this.valuePush(null, value); + this.schemaPush(null, schema); } valuePush(path, value) {