From 2b7c2048ef007d851ec57321400a09cda5bca5f2 Mon Sep 17 00:00:00 2001 From: 01Dri Date: Sat, 11 Oct 2025 05:26:28 -0300 Subject: [PATCH] up --- Flow.Launcher/Storage/History.cs | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/Flow.Launcher/Storage/History.cs b/Flow.Launcher/Storage/History.cs index b0fd2a4c9..346964f9f 100644 --- a/Flow.Launcher/Storage/History.cs +++ b/Flow.Launcher/Storage/History.cs @@ -30,13 +30,8 @@ namespace Flow.Launcher.Storage public List GetHistoryItems(Settings settings) { - if (settings.ShowHistoryOnHomePage) - { - if (settings.ShowHistoryQueryResultsForHomePage) return QueryHistoryItems.PopulateActions(true); - return LastOpenedHistoryItems.PopulateActions(false); - } - - return new List(); + if (settings.ShowHistoryQueryResultsForHomePage) return QueryHistoryItems.PopulateActions(true); + return LastOpenedHistoryItems.PopulateActions(false); } public void PopulateHistoryFromLegacyHistory()