theprogrammablemind_4wp 7.5.8-beta.42 → 7.5.8-beta.43

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/config.js +7 -6
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.42",
66
+ "version": "7.5.8-beta.43",
67
67
  "license": "ISC"
68
68
  }
package/src/config.js CHANGED
@@ -933,13 +933,14 @@ class Config {
933
933
  const instanceFragments = (instance.fragments || []).map((fragment) => fragment.key || fragment.query).map( toCanonical )
934
934
  const templateFragments = (template.fragments || []).concat(this.dynamicFragments).map( toCanonical )
935
935
  const sameFragments = helpers.safeEquals(templateFragments, instanceFragments)
936
- const sameQueries = helpers.safeEquals((template.queries || []).map(helpers.updateQueries), (instance.queries || []))
937
- if (!(instance && sameQueries && sameFragments)) {
938
- console.log("sameFragments", sameFragments)
939
- console.log("sameQueries", sameQueries)
940
- console.log("template.queries", template.queries)
941
- console.log("instance.queries", instance.queries)
936
+ const cleanupWhere = (query) => {
937
+ if (typeof query == 'string') {
938
+ return query
939
+ } else {
940
+ return { ...query, where: undefined }
941
+ }
942
942
  }
943
+ const sameQueries = helpers.safeEquals((cleanupWhere(template.queries) || []).map(helpers.updateQueries), (cleanupWhere(instance.queries) || []))
943
944
  return !(instance && sameQueries && sameFragments)
944
945
  }
945
946