diff --git a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/CustomFirefoxBookmarkLoader.cs b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/CustomFirefoxBookmarkLoader.cs index c79cf86cb..82bdc29f5 100644 --- a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/CustomFirefoxBookmarkLoader.cs +++ b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/CustomFirefoxBookmarkLoader.cs @@ -1,4 +1,5 @@ using System.Collections.Generic; +using System.IO; using Flow.Launcher.Plugin.BrowserBookmark.Models; namespace Flow.Launcher.Plugin.BrowserBookmark @@ -20,7 +21,7 @@ namespace Flow.Launcher.Plugin.BrowserBookmark public override List GetBookmarks() { - return GetBookmarksFromPath(BrowserDataPath); + return GetBookmarksFromPath(Path.Combine(BrowserDataPath, "places.sqlite")); } } }