diff options
Diffstat (limited to 'packages/meshbay-hub/src/meshbay_hub/static/platform.js')
| -rw-r--r-- | packages/meshbay-hub/src/meshbay_hub/static/platform.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/meshbay-hub/src/meshbay_hub/static/platform.js b/packages/meshbay-hub/src/meshbay_hub/static/platform.js index eeffd49..a8e17bf 100644 --- a/packages/meshbay-hub/src/meshbay_hub/static/platform.js +++ b/packages/meshbay-hub/src/meshbay_hub/static/platform.js @@ -227,9 +227,9 @@ export const node = { async installed() { return bridge && bridge.node ? bridge.node.installed() : { installed: false }; }, - async start() { + async start(opts) { if (!bridge || !bridge.node) throw new Error('Node bridge not available'); - return bridge.node.start(); + return bridge.node.start(opts); }, async call(method, path, body) { if (!bridge || !bridge.node) throw new Error('Node bridge not available'); |