Skip to content

Commit

Permalink
Merge pull request #285 from ZIMkaRU/feature/add-exception-for-error-…
Browse files Browse the repository at this point in the history
…modal-window

Add exceptions for error modal window
  • Loading branch information
ezewer authored Dec 11, 2023
2 parents dfaccb2 + 9ac18f5 commit 698fa1e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/error-manager/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,9 @@ const _isLogSkipped = (log) => {
str.includes('ERR_INTERNET_DISCONNECTED') ||
// Skip error when can't get code signature on mac
str.includes('Could not get code signature') ||
str.includes('ERR_BFX_API_SERVER_IS_NOT_AVAILABLE')
str.includes('ERR_BFX_API_SERVER_IS_NOT_AVAILABLE') ||
str.includes('database is locked') ||
str.includes('network timeout')
)
)
}
Expand Down

0 comments on commit 698fa1e

Please sign in to comment.