Skip to content

Commit

Permalink
fix: remove error report on connection (#1749)
Browse files Browse the repository at this point in the history
  • Loading branch information
daniellacosse authored Oct 9, 2023
1 parent d95c784 commit 742b6a5
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/www/app/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 742b6a5

Please sign in to comment.