Skip to content

Commit

Permalink
fix(appbridge): catching register errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Joshua Godi committed May 26, 2017
1 parent 7a7e70a commit 3287244
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/utils/app-bridge/AppBridge.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,11 @@ export class AppBridge {
this.traceName = traceName;
if (postRobot) {
postRobot.CONFIG.LOG_LEVEL = 'error';
this._setupHandlers();
try {
this._setupHandlers();
} catch (error) {
// No op
}
}
}

Expand Down

0 comments on commit 3287244

Please sign in to comment.