Skip to content

Commit b7e7217

Browse files
Fix folder path
1 parent c7f3283 commit b7e7217

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Plugins/Flow.Launcher.Plugin.BrowserBookmark/CustomFirefoxBookmarkLoader.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
using System.Collections.Generic;
2+
using System.IO;
23
using Flow.Launcher.Plugin.BrowserBookmark.Models;
34

45
namespace Flow.Launcher.Plugin.BrowserBookmark
@@ -20,7 +21,7 @@ public CustomFirefoxBookmarkLoader(CustomBrowser browser)
2021

2122
public override List<Bookmark> GetBookmarks()
2223
{
23-
return GetBookmarksFromPath(BrowserDataPath);
24+
return GetBookmarksFromPath(Path.Combine(BrowserDataPath, "places.sqlite"));
2425
}
2526
}
2627
}

0 commit comments

Comments
 (0)