Resolve missing config value: no-remote-delete (#103)

* Resolve missing config value: no-remote-delete
This commit is contained in:
abraunegg 2018-08-07 19:27:21 +10:00 committed by GitHub
parent b220bf87e3
commit 2a113de66c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -33,6 +33,8 @@ final class Config
// By default symlinks are not skipped (using string type
// instead of boolean because hashmap only stores string types)
setValue("skip_symlinks", "false");
// By default we will process remote deletes
setValue("no-remote-delete", "false");
if (!load(userConfigFilePath)) {
log.vlog("No config file found, using defaults");
}