Skip to content

Commit 6373778

Browse files
committed
Fix Firefox bookmark SQL query formatting
1 parent f6d25aa commit 6373778

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ public abstract class FirefoxBookmarkLoaderBase : IBookmarkLoader
1414
private const string QueryAllBookmarks = """
1515
SELECT moz_places.url, moz_bookmarks.title
1616
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-
)
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+
)
2020
ORDER BY moz_places.visit_count DESC
2121
""";
2222

0 commit comments

Comments
 (0)