Wait for provider before loading remixd provider

pull/668/head
ioedeveloper 4 years ago
parent 154b95d3ae
commit c1ec81530e
  1. 5
      apps/remix-ide/src/app/files/remixd-handle.js

@ -47,7 +47,6 @@ export class RemixdHandle extends WebsocketPlugin {
}
activate () {
this.fileSystemExplorer.show()
this.connectToLocalhost()
}
@ -83,7 +82,9 @@ export class RemixdHandle extends WebsocketPlugin {
this.canceled()
}
}, 3000)
this.locahostProvider.init()
this.locahostProvider.init(() => {
this.fileSystemExplorer.show()
})
this.call('manager', 'activatePlugin', 'git')
}
}

Loading…
Cancel
Save