From 7d109b908442c9454c6c4974db2db28b536c658f Mon Sep 17 00:00:00 2001 From: Alexander Griesser <46035328+anx-ag@users.noreply.github.com> Date: Wed, 1 Mar 2023 16:20:09 +0100 Subject: [PATCH] Fix typo in error message (#2572) stumbled upon that while debugging a problem with a community user --- src/main/views/MattermostView.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/views/MattermostView.ts b/src/main/views/MattermostView.ts index c1907b7e..d20fbbfd 100644 --- a/src/main/views/MattermostView.ts +++ b/src/main/views/MattermostView.ts @@ -195,7 +195,7 @@ export class MattermostView extends EventEmitter { } else { WindowManager.sendToRenderer(LOAD_FAILED, this.tab.name, err.toString(), loadURL.toString()); this.emit(LOAD_FAILED, this.tab.name, err.toString(), loadURL.toString()); - log.info(`[${Util.shorten(this.tab.name)}] Couldn't stablish a connection with ${loadURL}: ${err}. Will continue to retry in the background.`); + log.info(`[${Util.shorten(this.tab.name)}] Couldn't establish a connection with ${loadURL}: ${err}. Will continue to retry in the background.`); this.status = Status.ERROR; this.retryLoad = setTimeout(this.retryInBackground(loadURL), RELOAD_INTERVAL); }