mirror of
https://github.com/nextcloud/server.git
synced 2026-05-15 01:49:53 -04:00
Don't throw 500 when not installed
This commit is contained in:
parent
a9a43e9384
commit
8ada5e6ca7
1 changed files with 1 additions and 1 deletions
|
|
@ -40,7 +40,7 @@ try {
|
|||
'maintenance' => $maintenance,
|
||||
'version'=>implode('.', \OCP\Util::getVersion()),
|
||||
'versionstring'=>OC_Util::getVersionString(),
|
||||
'edition'=>OC_Util::getEditionString());
|
||||
'edition'=> $installed ? OC_Util::getEditionString() : '');
|
||||
if (OC::$CLI) {
|
||||
print_r($values);
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Reference in a new issue