wrap with try/catch

editorimprovementsbase
yann300 3 years ago committed by Aniket
parent 226e039a27
commit 871d95b6b7
  1. 6
      apps/remix-ide/src/app.js

@ -425,7 +425,11 @@ class AppComponent {
);
// @todo(remove the timeout when activatePlugin is on 0.3.0)
await this.appManager.call(...callDetails).catch(console.error);
try {
await this.appManager.call(...callDetails)
} catch (e) {
console.error(e)
}
}
}
}

Loading…
Cancel
Save