From c438691b73fef5037072667f3434dd96195fa888 Mon Sep 17 00:00:00 2001 From: Hocuri Date: Thu, 22 Oct 2020 15:39:07 +0200 Subject: [PATCH] Disable fetch-existing for now --- python/tests/test_account.py | 1 + src/config.rs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/python/tests/test_account.py b/python/tests/test_account.py index bb16316a2d..37a355d2ee 100644 --- a/python/tests/test_account.py +++ b/python/tests/test_account.py @@ -1975,6 +1975,7 @@ def test_add_all_recipients_as_contacts(self, acfactory, lp, mvbox_move): assert ac1.direct_imap.idle_wait_for_seen() ac1_clone = acfactory.clone_online_account(ac1) + ac1_clone.set_config("fetch_existing", "1") ac1_clone._configtracker.wait_finish() ac1_clone.start_io() diff --git a/src/config.rs b/src/config.rs index eed64e10de..7dac3619a3 100644 --- a/src/config.rs +++ b/src/config.rs @@ -69,7 +69,7 @@ pub enum Config { #[strum(props(default = "0"))] // also change MediaQuality.default() on changes MediaQuality, - #[strum(props(default = "1"))] + #[strum(props(default = "0"))] // disabled for now, we'll set this back to "1" at some point FetchExisting, #[strum(props(default = "0"))]