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 Aug 3, 2023
1 parent f38b816 commit b4d00f5
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 b4d00f5

Please sign in to comment.