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 d0289b4 commit cbf73fcCopy full SHA for cbf73fc
Plugins/Flow.Launcher.Plugin.BrowserBookmark/Main.cs
@@ -29,6 +29,13 @@ public void Init(PluginInitContext context)
29
30
_settings = context.API.LoadSettingJsonStorage<Settings>();
31
32
+ if (context.CurrentPluginMetadata.Disabled)
33
+ {
34
+ // Don't load and monitor files if disabled
35
+ // Note: It doesn't start loading or monitoring if enabled later
36
+ return;
37
+ }
38
+
39
cachedBookmarks = BookmarkLoader.LoadAllBookmarks(_settings);
40
41
_ = MonitorRefreshQueue();
0 commit comments