Browse Source

returns a 501 instead of exception if app is not installed - #13088

Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
Maxence Lange 5 years ago
parent
commit
e2d7c2fabb
1 changed files with 2 additions and 1 deletions
  1. 2 1
      public.php

+ 2 - 1
public.php

@@ -68,7 +68,8 @@ try {
 	OC_App::loadApps(array('filesystem', 'logging'));
 
 	if (!\OC::$server->getAppManager()->isInstalled($app)) {
-		throw new Exception('App not installed: ' . $app);
+		http_response_code(501);
+		exit;
 	}
 	OC_App::loadApp($app);
 	OC_User::setIncognitoMode(true);