We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07fb578 commit bbd0a3fCopy full SHA for bbd0a3f
src/ext/sw/sync.js
@@ -7,7 +7,7 @@ import hashCode from '@/services/hash';
7
8
const MAX_CONCURRENT = 50;
9
const BATCH_SIZE = 100;
10
-const PROGRESS_UPDATE_INTERVAL = 1000;
+const PROGRESS_UPDATE_INTERVAL = 3000;
11
12
const bookmarkStorage = new BookmarkStorage();
13
const attributeStorage = new AttributeStorage();
@@ -85,6 +85,7 @@ const sync = async () => {
85
bookmarksToProcess.push(bookmark);
86
}
87
88
+ bookmarksToProcess.sort((a, b) => String(a.id).localeCompare(String(b.id)));
89
90
console.log(`To process: ${bookmarksToProcess.length}`);
91
0 commit comments