Revert "Dark autoloader magic for ThemingDefaults"

This reverts commit 4e1d501696.
This commit is contained in:
Christoph Wurst 2023-02-10 09:18:38 +01:00
parent d5dcf7aa39
commit 44dc839f7b
No known key found for this signature in database
GPG key ID: CC42AC2A7F0E56D8

View file

@ -1199,16 +1199,10 @@ class Server extends ServerContainer implements IServerContainer {
$this->registerAlias(\OC_Defaults::class, 'ThemingDefaults');
$this->registerService('ThemingDefaults', function (Server $c) {
/*
* Dark magic for autoloader.
* If we do a class_exists it will try to load the class which will
* make composer cache the result. Resulting in errors when enabling
* the theming app.
*/
$prefixes = \OC::$composerAutoloader->getPrefixesPsr4();
if (isset($prefixes['OCA\\Theming\\'])) {
$classExists = true;
} else {
try {
$classExists = class_exists('OCA\Theming\ThemingDefaults');
} catch (\OCP\AutoloadNotAllowedException $e) {
// App disabled or in maintenance mode
$classExists = false;
}