From fbf63999ff31086ab62faec9dcdcf271e046d957 Mon Sep 17 00:00:00 2001 From: abraunegg Date: Tue, 10 Oct 2023 18:39:21 +1100 Subject: [PATCH] Update PR * Update PR --- src/config.d | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/config.d b/src/config.d index e39ab216..b8256c7c 100644 --- a/src/config.d +++ b/src/config.d @@ -907,12 +907,21 @@ class ApplicationConfig { } else { log.log("Unknown key in config file: ", key); + bool ignore_depreciation = false; + + // min_notify_changes as been depreciated + if (key == "min_notify_changes") { + log.log("\nThis option 'min_notify_changes' has been depreciated and will be ignored. Please read the updated documentation and update your client configuration."); + writeln(); + ignore_depreciation = true; + } + // Application configuration update required for Business Shared Folders if (key == "sync_business_shared_folders") { log.log("\nThe method to sync Business Shared Folders has changed. Please read the updated documentation and update your client configuration."); } // Return false - return false; + return ignore_depreciation; } } }