Merge pull request #741 from nextcloud/fix/740/timezone

it should work even if no timezone was set
This commit is contained in:
Simon L 2022-05-26 10:32:26 +02:00 committed by GitHub
commit 10d686a44f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -285,7 +285,11 @@ class DockerActionManager
$replacements[1] = '';
}
} elseif ($out[1] === 'TIMEZONE') {
$replacements[1] = $this->configurationManager->GetTimezone();
if ($this->configurationManager->GetTimezone() === '') {
$replacements[1] = 'UTC';
} else {
$replacements[1] = $this->configurationManager->GetTimezone();
}
} else {
$replacements[1] = $this->configurationManager->GetSecret($out[1]);
}