From cb8d96076673d2790619206ee1f1d5ee95bee829 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=B4me=20Chilliet?= Date: Thu, 10 Jul 2025 17:09:01 +0200 Subject: [PATCH] chore: Remove check for appinfo/database.xml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It has been unsupported since Nextcloud 22. Signed-off-by: Côme Chilliet --- lib/private/Installer.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib/private/Installer.php b/lib/private/Installer.php index 8a3290f144d..2f2793b9928 100644 --- a/lib/private/Installer.php +++ b/lib/private/Installer.php @@ -64,10 +64,6 @@ class Installer { $basedir = $app['path'] . '/' . $appId; - if (is_file($basedir . '/appinfo/database.xml')) { - throw new \Exception('The appinfo/database.xml file is not longer supported. Used in ' . $appId); - } - $l = \OCP\Util::getL10N('core'); $info = $this->appManager->getAppInfoByPath($basedir . '/appinfo/info.xml', $l->getLanguageCode());