Skip to content

Commit

Permalink
fix(web-client): QR failure sending money.
Browse files Browse the repository at this point in the history
  • Loading branch information
IscoRuta98 committed Jul 27, 2023
1 parent 08f1224 commit bdc2d27
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions web-client/src/app/utils/errors/global-error-handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ export class GlobalErrorHandler implements ErrorHandler {
return;
}

if (error.message.includes('setPhotoOptions failed')) {
console.warn('GlobalErrorHandler ignoring:', error);
return;
}

// ToDo (refactor): Do not skip specific errors in the global error handler.
if (error.message.includes('Local error:')) {
return;
Expand Down

0 comments on commit bdc2d27

Please sign in to comment.