From 25f4bb55578bfd87a6bfa2ba1f52096567b4f828 Mon Sep 17 00:00:00 2001 From: "Arthur E. Jones" Date: Wed, 4 May 2022 15:40:06 -0500 Subject: [PATCH] fix: remove unused variable in fn call - the WrappedDatabase.all() function only has two arguments --- sync-simple.js | 1 - 1 file changed, 1 deletion(-) diff --git a/sync-simple.js b/sync-simple.js index 93be489..7a53f68 100644 --- a/sync-simple.js +++ b/sync-simple.js @@ -75,7 +75,6 @@ function sync(messages, since, fileId) { WHERE timestamp > ? ORDER BY timestamp`, [since], - true ); let trie = addMessages(db, messages);