From 8b698c4465a70143cf08a57fa2240c38234c50d2 Mon Sep 17 00:00:00 2001 From: Jeremy Wu Date: Wed, 27 Jan 2021 07:42:43 +1100 Subject: [PATCH] update to empty list --- Plugins/Flow.Launcher.Plugin.Explorer/Main.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Main.cs b/Plugins/Flow.Launcher.Plugin.Explorer/Main.cs index 150cb7288..8002369a4 100644 --- a/Plugins/Flow.Launcher.Plugin.Explorer/Main.cs +++ b/Plugins/Flow.Launcher.Plugin.Explorer/Main.cs @@ -1,5 +1,6 @@ using Flow.Launcher.Infrastructure.Storage; using Flow.Launcher.Plugin.Explorer.Search; +using Flow.Launcher.Plugin.Explorer.Search.QuickAccessLinks; using Flow.Launcher.Plugin.Explorer.ViewModels; using Flow.Launcher.Plugin.Explorer.Views; using System.Collections.Generic; @@ -38,7 +39,7 @@ namespace Flow.Launcher.Plugin.Explorer if (Settings.QuickFolderAccessLinks.Any()) { Settings.QuickAccessLinks = Settings.QuickFolderAccessLinks; - Settings.QuickFolderAccessLinks = null; + Settings.QuickFolderAccessLinks = new List(); } contextMenu = new ContextMenu(Context, Settings, viewModel);