From 8dde69d580c702c3cdb2e65c999664005e374d02 Mon Sep 17 00:00:00 2001 From: pizzaboxer Date: Fri, 21 Apr 2023 18:25:32 +0100 Subject: [PATCH] Fix FastFlags being loaded too early --- Bloxstrap/App.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bloxstrap/App.xaml.cs b/Bloxstrap/App.xaml.cs index 2954958..221abeb 100644 --- a/Bloxstrap/App.xaml.cs +++ b/Bloxstrap/App.xaml.cs @@ -197,7 +197,6 @@ namespace Bloxstrap } Directories.Initialize(BaseDirectory); - FastFlags.Load(); // we shouldn't save settings on the first run until the first installation is finished, // just in case the user decides to cancel the install @@ -206,6 +205,7 @@ namespace Bloxstrap InitLog(); Settings.Load(); State.Load(); + FastFlags.Load(); } #if !DEBUG