Skip to content
This repository has been archived by the owner. It is now read-only.

Preserve order when exporting bookmarks #7195

Merged
merged 1 commit into from Feb 11, 2017
Merged
Changes from all commits
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

@@ -52,7 +52,7 @@ function createBookmarkArray (sites, parentFolderId, first = true, depth = 1) {

if (first) payload.push(`${indentFirst}<DL><p>`)

filteredBookmarks.forEach((site) => {
filteredBookmarks.toList().sort(siteUtil.siteSort).forEach((site) => {
if (site.get('tags').includes(siteTags.BOOKMARK) && site.get('location')) {
title = site.get('customTitle') || site.get('title') || site.get('location')
payload.push(`${indentNext}<DT><A HREF="${site.get('location')}">${title}</A>`)
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.