mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Fix folder path
This commit is contained in:
parent
c7f3283e3a
commit
b7e7217b2e
1 changed files with 2 additions and 1 deletions
|
|
@ -1,4 +1,5 @@
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using System.IO;
|
||||||
using Flow.Launcher.Plugin.BrowserBookmark.Models;
|
using Flow.Launcher.Plugin.BrowserBookmark.Models;
|
||||||
|
|
||||||
namespace Flow.Launcher.Plugin.BrowserBookmark
|
namespace Flow.Launcher.Plugin.BrowserBookmark
|
||||||
|
|
@ -20,7 +21,7 @@ namespace Flow.Launcher.Plugin.BrowserBookmark
|
||||||
|
|
||||||
public override List<Bookmark> GetBookmarks()
|
public override List<Bookmark> GetBookmarks()
|
||||||
{
|
{
|
||||||
return GetBookmarksFromPath(BrowserDataPath);
|
return GetBookmarksFromPath(Path.Combine(BrowserDataPath, "places.sqlite"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue