Skip to content

Commit

Permalink
Merge pull request #252 from ZIMkaRU/bugfix/prevent-showing-error-mod…
Browse files Browse the repository at this point in the history
…al-dialog-due-to-inet-issue

Prevent showing error modal dialog due to inet issue
  • Loading branch information
ezewer authored Sep 18, 2023
2 parents cf192f7 + 7ba809e commit cc40933
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/error-manager/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@ const _isLogSkipped = (log) => {
str.includes('contextIsolation is deprecated') ||
str.includes('ERR_INTERNET_DISCONNECTED') ||
// Skip error when can't get code signature on mac
str.includes('Could not get code signature')
str.includes('Could not get code signature') ||
str.includes('ERR_BFX_API_SERVER_IS_NOT_AVAILABLE')
)
)
}
Expand Down

0 comments on commit cc40933

Please sign in to comment.