Do not empty config.php file if reading failed for any reason

Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
This commit is contained in:
Côme Chilliet 2022-09-06 17:22:16 +02:00
parent 2c08e6f080
commit c2dafb0997
No known key found for this signature in database
GPG key ID: A3E2F658B28C760A

View file

@ -262,6 +262,10 @@ class Config {
private function writeData() {
$this->checkReadOnly();
if (!is_file(\OC::$configDir.'/CAN_INSTALL') && !isset($this->cache['version'])) {
throw new HintException(sprintf('Configuration was not read or initialized correctly, not overwriting %s', $this->configFilePath));
}
// Create a php file ...
$content = "<?php\n";
$content .= '$CONFIG = ';