Skip to content
Snippets Groups Projects
Unverified Commit bbc5fbe8 authored by Joas Schilling's avatar Joas Schilling
Browse files

Don't throw 500 when not installed

parent 7bfc698a
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment