diff --git a/src/app.js b/src/app.js index b530d31c15..06b4b15f80 100644 --- a/src/app.js +++ b/src/app.js @@ -404,7 +404,11 @@ Please make a backup of your contracts and start using http://remix.ethereum.org // Set workspace after initial activation if (Array.isArray(workspace)) { - await appManager.activatePlugin(workspace) + try { + await appManager.activatePlugin(workspace) + } catch (e) { + console.error(e) + } } else { // activate solidity plugin appManager.ensureActivated('solidity') diff --git a/src/app/tabs/debugger-tab.js b/src/app/tabs/debugger-tab.js index 132cf7d1ae..cc9af0b74d 100644 --- a/src/app/tabs/debugger-tab.js +++ b/src/app/tabs/debugger-tab.js @@ -64,7 +64,7 @@ class DebuggerTab extends ViewPlugin { } ) - this.call('manager', 'activatePlugin', 'source-verification') + this.call('manager', 'activatePlugin', 'source-verification').catch(e => console.log(e.message)) // this.call('manager', 'activatePlugin', 'udapp') return this.el