From bec83566eb82ca2b206b12405147af33156b5ac8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Tue, 1 Sep 2020 16:20:31 +0200 Subject: [PATCH] Also call register during legacy application loading MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- lib/AppInfo/ApplicationLegacy.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/AppInfo/ApplicationLegacy.php b/lib/AppInfo/ApplicationLegacy.php index b194dd37f..22a3f6ac5 100644 --- a/lib/AppInfo/ApplicationLegacy.php +++ b/lib/AppInfo/ApplicationLegacy.php @@ -88,6 +88,8 @@ class ApplicationLegacy extends App { $container->registerService('database4ByteSupport', static function () use ($server) { return $server->getDatabaseConnection()->supports4ByteText(); }); + + $this->register(); } public function register(): void {