re-enable whiteboard by default

Signed-off-by: Simon L. <szaimen@e.mail.de>
This commit is contained in:
Simon L. 2025-11-24 15:00:28 +01:00
parent 7661f45cce
commit eda5151bb2

View file

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