diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2022-09-22 13:29:02 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2022-09-22 15:11:39 +0200 |
commit | a133a8a9d7771ca4e5d632b6e48e5f3ce1847862 (patch) | |
tree | 997dcc49462b263ec059857c85675e9eaa42d285 /lib/private/Setup.php | |
parent | a7af25e1d99b95831ec61dc35c734974a60b26fd (diff) | |
download | nextcloud-server-a133a8a9d7771ca4e5d632b6e48e5f3ce1847862.tar.gz nextcloud-server-a133a8a9d7771ca4e5d632b6e48e5f3ce1847862.zip |
remove getDefaultInstallationBundle
- because all apps are shipped now it was returning an empty result
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'lib/private/Setup.php')
-rw-r--r-- | lib/private/Setup.php | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/private/Setup.php b/lib/private/Setup.php index edbb9b33275..a14d43a65f0 100644 --- a/lib/private/Setup.php +++ b/lib/private/Setup.php @@ -403,14 +403,6 @@ class Setup { // Install shipped apps and specified app bundles Installer::installShippedApps(); - $bundleFetcher = new BundleFetcher(\OC::$server->getL10N('lib')); - $defaultInstallationBundles = $bundleFetcher->getDefaultInstallationBundle(); - foreach ($defaultInstallationBundles as $bundle) { - try { - $this->installer->installAppBundle($bundle); - } catch (Exception $e) { - } - } // create empty file in data dir, so we can later find // out that this is indeed an ownCloud data directory |