Update PR

* Update PR
This commit is contained in:
abraunegg 2023-10-10 18:39:21 +11:00
parent 72a4680035
commit fbf63999ff

View file

@ -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;
}
}
}