We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 165e498 commit 4931a14Copy full SHA for 4931a14
Plugins/Flow.Launcher.Plugin.BrowserBookmark/Main.cs
@@ -37,8 +37,6 @@ public void Init(PluginInitContext context)
37
context.CurrentPluginMetadata.PluginCacheDirectoryPath,
38
"FaviconCache");
39
40
- FilesFolders.ValidateDirectory(_faviconCacheDir);
41
-
42
LoadBookmarksIfEnabled();
43
}
44
@@ -50,6 +48,9 @@ private static void LoadBookmarksIfEnabled()
50
48
return;
51
49
52
+ // Validate the cache directory before loading all bookmarks because Flow needs this directory to storage favicons
+ FilesFolders.ValidateDirectory(_faviconCacheDir);
53
+
54
_cachedBookmarks = BookmarkLoader.LoadAllBookmarks(_settings);
55
_ = MonitorRefreshQueueAsync();
56
_initialized = true;
0 commit comments