Merge pull request #18332 from nextcloud/backport/18312/stable17

[stable17] Do not disable authentication apps
This commit is contained in:
Roeland Jago Douma 2019-12-10 19:29:05 +01:00 committed by GitHub
commit e5772bdc3d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -158,8 +158,9 @@ class OC_App {
throw $ex; throw $ex;
} }
\OC::$server->getLogger()->logException($ex); \OC::$server->getLogger()->logException($ex);
if (!\OC::$server->getAppManager()->isShipped($app)) {
// Only disable apps which are not shipped if (!\OC::$server->getAppManager()->isShipped($app) && !self::isType($app, ['authentication'])) {
// Only disable apps which are not shipped and that are not authentication apps
\OC::$server->getAppManager()->disableApp($app, true); \OC::$server->getAppManager()->disableApp($app, true);
} }
} }