Fix Bug #3186: Fix that empty 'skip_file' forces resync indefinitely (#3194)

* If the user sets an empty 'skip_file' configuration, do not reset this to the application defaults
This commit is contained in:
abraunegg 2025-04-05 05:57:30 +11:00 committed by GitHub
commit 7d5f635503
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -600,11 +600,6 @@ class ApplicationConfig {
}
}
// If the 'user' did not specify any 'skip_file' configuration in any loaded configuration file, load the defaults for 'skip_file'
if (configFileSkipFile.empty) {
configFileSkipFile = defaultSkipFile;
}
// return if the configuration was initialised
return configurationInitialised;
}