From 742b6a59729ea1998dc4805c93df03a0d5ad3df2 Mon Sep 17 00:00:00 2001 From: Daniel LaCosse <3759828+daniellacosse@users.noreply.github.com> Date: Mon, 9 Oct 2023 11:44:59 -0400 Subject: [PATCH] fix: remove error report on connection (#1749) --- src/www/app/app.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/www/app/app.ts b/src/www/app/app.ts index 9694618dbf..6993c5afe4 100644 --- a/src/www/app/app.ts +++ b/src/www/app/app.ts @@ -404,9 +404,6 @@ export class App { } catch (e) { this.updateServerListItem(serverId, {connectionState: ServerConnectionState.DISCONNECTED}); console.error(`could not connect to server ${serverId}: ${e.name}`); - if (!(e instanceof errors.RegularNativeError)) { - this.errorReporter.report(`connection failure: ${e.name}`, 'connection-failure'); - } if (e instanceof errors.SystemConfigurationException) { if (await this.showConfirmationDialog(this.localize('outline-services-installation-confirmation'))) { await this.installVpnService();