Merge pull request #7180 from nextcloud/enh/noid/re-anble-whiteboard

re-enable whiteboard by default
This commit is contained in:
Simon L.
2025-11-24 15:01:50 +01:00
committed by GitHub

View File

@@ -164,10 +164,10 @@ class ConfigurationManager
public function isWhiteboardEnabled() : bool {
$config = $this->GetConfig();
if (isset($config['isWhiteboardEnabled']) && $config['isWhiteboardEnabled'] === 1) {
return true;
} else {
if (isset($config['isWhiteboardEnabled']) && $config['isWhiteboardEnabled'] === 0) {
return false;
} else {
return true;
}
}