From 50f5e850dd4e45d698dd7e891c4de3f0fbe5961d Mon Sep 17 00:00:00 2001 From: 01Dri Date: Thu, 9 Oct 2025 23:47:59 -0300 Subject: [PATCH] feat: code quality --- Flow.Launcher/Storage/History.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Flow.Launcher/Storage/History.cs b/Flow.Launcher/Storage/History.cs index 33128256e..9155f02d8 100644 --- a/Flow.Launcher/Storage/History.cs +++ b/Flow.Launcher/Storage/History.cs @@ -32,8 +32,7 @@ namespace Flow.Launcher.Storage public List GetHistoryItems(Settings settings) { if (settings.ShowHistoryQueryResultsForHomePage) return QueryHistoryItems; - if (settings.ShowHistoryLastOpenedResultsForHomePage) return LastOpenedHistoryItems; - return new List(); + return LastOpenedHistoryItems; } private void AddLastQuery(Result result)