@indra.ai/deva 1.6.32 → 1.6.34
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 +2 -2
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -581,8 +581,8 @@ class Deva {
|
|
|
581
581
|
Done(resolve, reject) {
|
|
582
582
|
try {
|
|
583
583
|
delete this._client.features; // delete the features key when done.
|
|
584
|
-
this.state('Done', 'Done');
|
|
585
|
-
return resolve(
|
|
584
|
+
this.state('Done', 'Done'); // set the done state.
|
|
585
|
+
return resolve(this._client); // resolve an empty pr
|
|
586
586
|
} catch (e) {
|
|
587
587
|
this.state('catch', 'Done');
|
|
588
588
|
return this.err(e, false, reject);
|