From 6125dad94a2a9c08120ad5748ba2b0c1fc40d0cb Mon Sep 17 00:00:00 2001 From: Blooym <19539165+Blooym@users.noreply.github.com> Date: Wed, 30 Oct 2024 22:10:57 +0000 Subject: [PATCH] refactor: make fts conditional to flatpak --- src/XIVLauncher.Core/LauncherApp.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/XIVLauncher.Core/LauncherApp.cs b/src/XIVLauncher.Core/LauncherApp.cs index e9a9b4c3..2d09ed2f 100644 --- a/src/XIVLauncher.Core/LauncherApp.cs +++ b/src/XIVLauncher.Core/LauncherApp.cs @@ -269,7 +269,9 @@ public void FinishFromUpdateWarn() public void RunStartupTasks() { +#if FLATPAK this.ftsPage.OpenFtsIfNeeded(); +#endif this.mainPage.DoAutoLoginIfApplicable(); }