theprogrammablemind_4wp 7.5.8-beta.49 → 7.5.8-beta.50

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/config.js +4 -0
package/package.json CHANGED
@@ -63,6 +63,6 @@
63
63
  "json-stable-stringify": "^1.0.1",
64
64
  "node-fetch": "^2.6.1"
65
65
  },
66
- "version": "7.5.8-beta.49",
66
+ "version": "7.5.8-beta.50",
67
67
  "license": "ISC"
68
68
  }
package/src/config.js CHANGED
@@ -962,6 +962,10 @@ class Config {
962
962
  }
963
963
 
964
964
  const sameQueries = helpers.safeEquals(toCanonicalQueries(template.queries || []).map(helpers.updateQueries), toCanonicalQueries(instance.queries || []))
965
+ // greg99
966
+ console.log("sameQueries", sameQueries)
967
+ console.log('template.queries', toCanonicalQueries(template.queries || []).map(helpers.updateQueries))
968
+ console.log('instance.queries', toCanonicalQueries(instance.queries || []))
965
969
  return !(instance && sameQueries && sameFragments)
966
970
  }
967
971