Browse Source

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

Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
tags/v16.0.0alpha1
Maxence Lange 5 years ago
parent
commit
fb7840b283
No account linked to committer's email address
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      public.php

+ 2
- 1
public.php View File

@@ -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);

Loading…
Cancel
Save