Skip to content

Commit 8b698c4

Browse files
committed
update to empty list
1 parent b71203c commit 8b698c4

File tree

1 file changed

+2
-1
lines changed
  • Plugins/Flow.Launcher.Plugin.Explorer

1 file changed

+2
-1
lines changed

Plugins/Flow.Launcher.Plugin.Explorer/Main.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
using Flow.Launcher.Infrastructure.Storage;
22
using Flow.Launcher.Plugin.Explorer.Search;
3+
using Flow.Launcher.Plugin.Explorer.Search.QuickAccessLinks;
34
using Flow.Launcher.Plugin.Explorer.ViewModels;
45
using Flow.Launcher.Plugin.Explorer.Views;
56
using System.Collections.Generic;
@@ -38,7 +39,7 @@ public async Task InitAsync(PluginInitContext context)
3839
if (Settings.QuickFolderAccessLinks.Any())
3940
{
4041
Settings.QuickAccessLinks = Settings.QuickFolderAccessLinks;
41-
Settings.QuickFolderAccessLinks = null;
42+
Settings.QuickFolderAccessLinks = new List<AccessLink>();
4243
}
4344

4445
contextMenu = new ContextMenu(Context, Settings, viewModel);

0 commit comments

Comments
 (0)