diff --git a/Flow.Launcher/Storage/HistoryItem.cs b/Flow.Launcher/Storage/HistoryItem.cs
index 63604d2c8..733c50be0 100644
--- a/Flow.Launcher/Storage/HistoryItem.cs
+++ b/Flow.Launcher/Storage/HistoryItem.cs
@@ -2,7 +2,7 @@
namespace Flow.Launcher.Storage
{
- [Obsolete("Use LastOpenedHistoryItem instead. This class will be removed in future versions.")]
+ [Obsolete("Use LastOpenedHistoryResult instead. This class will be removed in future versions.")]
public class HistoryItem
{
public string Query { get; set; }
diff --git a/Flow.Launcher/Storage/QueryHistory.cs b/Flow.Launcher/Storage/QueryHistory.cs
index d25c13ca0..015b33399 100644
--- a/Flow.Launcher/Storage/QueryHistory.cs
+++ b/Flow.Launcher/Storage/QueryHistory.cs
@@ -25,6 +25,7 @@ namespace Flow.Launcher.Storage
/// format and append them to
/// .
///
+ [Obsolete("For backwards comaptibility. Remove after release v2.3.0")]
public void PopulateHistoryFromLegacyHistory()
{
if (Items.Count == 0) return;
diff --git a/Flow.Launcher/ViewModel/MainViewModel.cs b/Flow.Launcher/ViewModel/MainViewModel.cs
index 68ddada00..7c0cadb67 100644
--- a/Flow.Launcher/ViewModel/MainViewModel.cs
+++ b/Flow.Launcher/ViewModel/MainViewModel.cs
@@ -1386,7 +1386,6 @@ namespace Flow.Launcher.ViewModel
///
internal void RefreshLastOpenedHistoryResults()
{
- // TODO: remove after release v2.3.0
_history.PopulateHistoryFromLegacyHistory();
_history.UpdateIcoPathAbsolute();