theprogrammablemind_4wp 7.5.8-beta.89 → 7.5.8-beta.90
Sign up to get free protection for your applications and to get access to all the features.
- package/client.js +7 -1
- package/package.json +1 -1
package/client.js
CHANGED
@@ -434,7 +434,13 @@ 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, {
|
437
|
+
contextPrime = semantics.apply(args, {
|
438
|
+
marker: 'error',
|
439
|
+
context,
|
440
|
+
text: e ? e.toString() : 'not available',
|
441
|
+
reason: e.reason,
|
442
|
+
error: e.stack || e.error
|
443
|
+
})
|
438
444
|
}
|
439
445
|
}
|
440
446
|
if (contextPrime.controlRemove) {
|