Skip to content

Commit

Permalink
Update PR
Browse files Browse the repository at this point in the history
* Update PR
  • Loading branch information
abraunegg committed Oct 10, 2023
1 parent 72a4680 commit fbf6399
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/config.d
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}
}
Expand Down

0 comments on commit fbf6399

Please sign in to comment.