From fb7a4a78b32a974a198871ca012f521cdc4e14d9 Mon Sep 17 00:00:00 2001 From: eight Date: Sat, 12 Oct 2019 21:17:48 +0800 Subject: [PATCH] Fix: fromPref is not used --- background/sync.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/background/sync.js b/background/sync.js index 27a62560..6120b31f 100644 --- a/background/sync.js +++ b/background/sync.js @@ -95,7 +95,7 @@ const sync = (() => { if (value === 'none') { stop().catch(console.error); } else { - start(value).catch(console.error); + start(value, true).catch(console.error); } }