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 f6d25aa commit 6373778Copy full SHA for 6373778
Plugins/Flow.Launcher.Plugin.BrowserBookmark/FirefoxBookmarkLoader.cs
@@ -14,9 +14,9 @@ public abstract class FirefoxBookmarkLoaderBase : IBookmarkLoader
14
private const string QueryAllBookmarks = """
15
SELECT moz_places.url, moz_bookmarks.title
16
FROM moz_places
17
- INNER JOIN moz_bookmarks ON (
18
- moz_bookmarks.fk NOT NULL AND moz_bookmarks.title NOT NULL AND moz_bookmarks.fk = moz_places.id
19
- )
+ INNER JOIN moz_bookmarks ON (
+ moz_bookmarks.fk NOT NULL AND moz_bookmarks.title NOT NULL AND moz_bookmarks.fk = moz_places.id
+ )
20
ORDER BY moz_places.visit_count DESC
21
""";
22
0 commit comments