We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f632092 + 139e45f commit 5c58a21Copy full SHA for 5c58a21
lib/private/legacy/app.php
@@ -158,8 +158,9 @@ public static function loadApp(string $app) {
158
throw $ex;
159
}
160
\OC::$server->getLogger()->logException($ex);
161
- if (!\OC::$server->getAppManager()->isShipped($app)) {
162
- // Only disable apps which are not shipped
+
+ if (!\OC::$server->getAppManager()->isShipped($app) && !self::isType($app, ['authentication'])) {
163
+ // Only disable apps which are not shipped and that are not authentication apps
164
\OC::$server->getAppManager()->disableApp($app, true);
165
166
0 commit comments