@indra.ai/deva 1.2.34 → 1.2.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 +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -700,7 +700,7 @@ class Deva {
|
|
|
700
700
|
}).then(() => {
|
|
701
701
|
this.zone('init');
|
|
702
702
|
const hasOnInit = this.onInit && typeof this.onInit === 'function';
|
|
703
|
-
return hasOnInit ? this.onInit(_data) : this.start(_data, resolve);
|
|
703
|
+
return hasOnInit ? this.onInit(_data, resolve) : this.start(_data, resolve);
|
|
704
704
|
}).catch(err => {
|
|
705
705
|
return this.error(err, client, reject);
|
|
706
706
|
});
|