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 c7f3283 commit b7e7217Copy full SHA for b7e7217
Plugins/Flow.Launcher.Plugin.BrowserBookmark/CustomFirefoxBookmarkLoader.cs
@@ -1,4 +1,5 @@
1
using System.Collections.Generic;
2
+using System.IO;
3
using Flow.Launcher.Plugin.BrowserBookmark.Models;
4
5
namespace Flow.Launcher.Plugin.BrowserBookmark
@@ -20,7 +21,7 @@ public CustomFirefoxBookmarkLoader(CustomBrowser browser)
20
21
22
public override List<Bookmark> GetBookmarks()
23
{
- return GetBookmarksFromPath(BrowserDataPath);
24
+ return GetBookmarksFromPath(Path.Combine(BrowserDataPath, "places.sqlite"));
25
}
26
27
0 commit comments