mirror of
https://github.com/nextcloud/server.git
synced 2026-04-15 22:11:17 -04:00
Check if server is installed
AppManager has a dependency on Nc being installed
This commit is contained in:
parent
27b699bdbc
commit
89e889c832
1 changed files with 1 additions and 1 deletions
|
|
@ -620,7 +620,7 @@ class Server extends ServerContainer implements IServerContainer {
|
|||
return $factory->getManager();
|
||||
});
|
||||
$this->registerService('ThemingDefaults', function(Server $c) {
|
||||
if($this->getAppManager()->isInstalled('theming')) {
|
||||
if($this->getConfig()->getSystemValue('installed', false) && $this->getAppManager()->isInstalled('theming')) {
|
||||
return new Template(
|
||||
$this->getConfig(),
|
||||
$this->getL10N('theming'),
|
||||
|
|
|
|||
Loading…
Reference in a new issue