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()