mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-19 22:16:49 +00:00
Merge pull request #2607 from nextcloud/enh/noid/enable-imaginary
enable imaginary by default
This commit is contained in:
commit
bbcdb5172c
1 changed files with 3 additions and 3 deletions
|
|
@ -157,10 +157,10 @@ class ConfigurationManager
|
||||||
|
|
||||||
public function isImaginaryEnabled() : bool {
|
public function isImaginaryEnabled() : bool {
|
||||||
$config = $this->GetConfig();
|
$config = $this->GetConfig();
|
||||||
if (isset($config['isImaginaryEnabled']) && $config['isImaginaryEnabled'] === 1) {
|
if (isset($config['isImaginaryEnabled']) && $config['isImaginaryEnabled'] === 0) {
|
||||||
return true;
|
|
||||||
} else {
|
|
||||||
return false;
|
return false;
|
||||||
|
} else {
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue