From c129e6ac3509410fde5835b823fa3ea39d3f90d7 Mon Sep 17 00:00:00 2001 From: Thomas Citharel Date: Sat, 12 Sep 2026 18:10:00 +0200 Subject: [PATCH] refactor: correct small typo in isUpgradeRequired log message Signed-off-by: Thomas Citharel --- lib/private/App/AppManager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/App/AppManager.php b/lib/private/App/AppManager.php index 31624c0127e0a..d378cf1098a1f 100644 --- a/lib/private/App/AppManager.php +++ b/lib/private/App/AppManager.php @@ -1201,7 +1201,7 @@ public function isUpgradeRequired(string $appId): bool { if ($currentVersion && isset($versions[$appId])) { $installedVersion = $versions[$appId]; if (!version_compare($currentVersion, $installedVersion, '=')) { - $this->logger->info('{appId} needs and upgrade from {from} to {to}', + $this->logger->info('{appId} needs an upgrade from {from} to {to}', [ 'appId' => $appId, 'from' => $installedVersion,