@indra.ai/deva 1.5.33 → 1.5.35
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.
- package/index.js +3 -2
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -1528,9 +1528,10 @@ class Deva {
|
|
|
1528
1528
|
***************/
|
|
1529
1529
|
help(msg, help_dir) {
|
|
1530
1530
|
return new Promise((resolve, reject) => {
|
|
1531
|
+
const id = this.lib.uid();
|
|
1531
1532
|
this.zone('help', id);
|
|
1532
1533
|
if (!this._active) return resolve(this._messages.offline);
|
|
1533
|
-
|
|
1534
|
+
|
|
1534
1535
|
this.feature('help', id);
|
|
1535
1536
|
this.action('help', id);
|
|
1536
1537
|
this.state('help', id);
|
|
@@ -1589,7 +1590,7 @@ class Deva {
|
|
|
1589
1590
|
message: err.message,
|
|
1590
1591
|
stack: err.stack,
|
|
1591
1592
|
},
|
|
1592
|
-
|
|
1593
|
+
packet,
|
|
1593
1594
|
created: Date.now(),
|
|
1594
1595
|
}
|
|
1595
1596
|
data.hash = this.lib.hash(data);
|