Don't throw 500 when not installed

pull/1284/head
Joas Schilling 8 years ago
parent 7bfc698ae4
commit bbc5fbe8c4
No known key found for this signature in database
GPG Key ID: E166FD8976B3BAC8

@ -43,7 +43,7 @@ try {
'maintenance' => $maintenance,
'version'=>implode('.', \OCP\Util::getVersion()),
'versionstring'=>OC_Util::getVersionString(),
'edition'=>OC_Util::getEditionString(),
'edition'=> $installed ? OC_Util::getEditionString() : '',
'productname'=>$defaults->getName());
if (OC::$CLI) {
print_r($values);

Loading…
Cancel
Save