From eb16a7778b2c73512c9dbcf1543f645fbc6fc4f0 Mon Sep 17 00:00:00 2001 From: Eugene Pankov Date: Wed, 5 Oct 2022 12:41:16 +0200 Subject: [PATCH] fixed #6905 - incorrect tabby.sh URL --- .../src/components/configSyncSettingsTab.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tabby-settings/src/components/configSyncSettingsTab.component.ts b/tabby-settings/src/components/configSyncSettingsTab.component.ts index 912628ba..9206b399 100644 --- a/tabby-settings/src/components/configSyncSettingsTab.component.ts +++ b/tabby-settings/src/components/configSyncSettingsTab.component.ts @@ -118,7 +118,7 @@ export class ConfigSyncSettingsTabComponent extends BaseComponent { openSyncHost () { if (this.config.store.configSync.host === 'https://api.tabby.sh') { - this.platform.openExternal('https://tabby.sh/app') + this.platform.openExternal('https://app.tabby.sh') } else { this.platform.openExternal(this.config.store.configSync.host) }