We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents eb31220 + 0320569 commit 0b64967Copy full SHA for 0b64967
php/src/Data/ConfigurationManager.php
@@ -164,10 +164,10 @@ public function SetDockerSocketProxyEnabledState(int $value) : void {
164
165
public function isWhiteboardEnabled() : bool {
166
$config = $this->GetConfig();
167
- if (isset($config['isWhiteboardEnabled']) && $config['isWhiteboardEnabled'] === 0) {
168
- return false;
169
- } else {
+ if (isset($config['isWhiteboardEnabled']) && $config['isWhiteboardEnabled'] === 1) {
170
return true;
+ } else {
+ return false;
171
}
172
173
0 commit comments