From b7e7217b2efaebf60c7972bcfe7e27e7d62ede95 Mon Sep 17 00:00:00 2001 From: Vic <10308169+VictoriousRaptor@users.noreply.github.com> Date: Fri, 3 Feb 2023 17:29:51 +0800 Subject: [PATCH] Fix folder path --- .../CustomFirefoxBookmarkLoader.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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")); } } }