theprogrammablemind_4wp 7.5.8-beta.87 → 7.5.8-beta.88

Sign up to get free protection for your applications and to get access to all the features.
package/client.js CHANGED
@@ -434,7 +434,7 @@ const processContextsB = ({ config, hierarchy, semantics, generators, json, isTe
434
434
  if (isInstance) {
435
435
  console.log('error', e.error)
436
436
  }
437
- contextPrime = semantics.apply(args, { marker: 'error', context, reason: e.reason, error: e.stack })
437
+ contextPrime = semantics.apply(args, { marker: 'error', context, text: e ? e.toString() : 'not available', reason: e.reason, error: e.stack })
438
438
  }
439
439
  }
440
440
  if (contextPrime.controlRemove) {
package/package.json CHANGED
@@ -64,6 +64,6 @@
64
64
  "json-stable-stringify": "^1.0.1",
65
65
  "node-fetch": "^2.6.1"
66
66
  },
67
- "version": "7.5.8-beta.87",
67
+ "version": "7.5.8-beta.88",
68
68
  "license": "ISC"
69
69
  }
package/src/config.js CHANGED
@@ -1041,13 +1041,13 @@ class Config {
1041
1041
  }
1042
1042
 
1043
1043
  const sameQueries = helpers.safeEquals(toCanonicalQueries(template.queries || []).map(helpers.updateQueries), toCanonicalQueries(instance.queries || []))
1044
- if (!sameQueries) {
1045
- debugger
1046
- debugger
1047
- }
1048
1044
 
1049
- const debug = true
1045
+ const debug = false
1050
1046
  if (debug) {
1047
+ if (!sameQueries) {
1048
+ debugger
1049
+ debugger
1050
+ }
1051
1051
  console.log("instance", instance)
1052
1052
  console.log("sameQueries", sameQueries)
1053
1053
  console.log("sameFragments", sameFragments)