Make error handler more generic

This commit is contained in:
Hinton 2021-01-04 20:53:49 +01:00
parent 3541f458e5
commit e922ff0bc2
1 changed files with 1 additions and 3 deletions

View File

@ -115,9 +115,7 @@ export class NativeMessagingBackground {
error = chrome.runtime.lastError.message;
}
if (error === 'Specified native messaging host not found.' ||
error === 'Access to the specified native messaging host is forbidden.' ||
error === 'An unexpected error occurred') {
if (error != null) {
this.messagingService.send('showDialog', {
text: this.i18nService.t('desktopIntegrationDisabledDesc'),
title: this.i18nService.t('desktopIntegrationDisabledTitle'),