Fix folder path

This commit is contained in:
Vic 2023-02-03 17:29:51 +08:00
parent c7f3283e3a
commit b7e7217b2e

View file

@ -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<Bookmark> GetBookmarks()
{
return GetBookmarksFromPath(BrowserDataPath);
return GetBookmarksFromPath(Path.Combine(BrowserDataPath, "places.sqlite"));
}
}
}