From 222ee55189861d8eb42b9bbf1b1a87f33a77da93 Mon Sep 17 00:00:00 2001 From: SuperDooper <37051355+superdooper86@users.noreply.github.com> Date: Fri, 8 May 2026 19:38:19 +0200 Subject: [PATCH] Load cached state immediately on startup before background refresh --- windows/App.xaml.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/windows/App.xaml.cs b/windows/App.xaml.cs index 7c5b373..63145b2 100644 --- a/windows/App.xaml.cs +++ b/windows/App.xaml.cs @@ -37,6 +37,7 @@ public partial class App : Application _ = Task.Run(async () => { + await ViewModel.LoadFromCacheAsync(); await Task.Delay(1000); await ViewModel.RefreshAsync(); await Updater.CheckForUpdatesAsync();