We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b71203c commit 8b698c4Copy full SHA for 8b698c4
Plugins/Flow.Launcher.Plugin.Explorer/Main.cs
@@ -1,5 +1,6 @@
1
using Flow.Launcher.Infrastructure.Storage;
2
using Flow.Launcher.Plugin.Explorer.Search;
3
+using Flow.Launcher.Plugin.Explorer.Search.QuickAccessLinks;
4
using Flow.Launcher.Plugin.Explorer.ViewModels;
5
using Flow.Launcher.Plugin.Explorer.Views;
6
using System.Collections.Generic;
@@ -38,7 +39,7 @@ public async Task InitAsync(PluginInitContext context)
38
39
if (Settings.QuickFolderAccessLinks.Any())
40
{
41
Settings.QuickAccessLinks = Settings.QuickFolderAccessLinks;
- Settings.QuickFolderAccessLinks = null;
42
+ Settings.QuickFolderAccessLinks = new List<AccessLink>();
43
}
44
45
contextMenu = new ContextMenu(Context, Settings, viewModel);
0 commit comments