From d8db64d13ce0c750e1650088ffbc5afe8dc8d543 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rapha=C3=ABl=20Gertz?= Date: Thu, 7 Mar 2024 18:07:52 +0100 Subject: [PATCH] Protect from getLocale call on empty request happening in console commands --- Factory.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Factory.php b/Factory.php index 3c5f3d6..e2d05d5 100644 --- a/Factory.php +++ b/Factory.php @@ -73,7 +73,7 @@ final class Factory implements RepositoryFactoryInterface { //Set to current locale //XXX: current request is not yet populated in constructor - $this->locale = $this->request->getCurrentRequest()->getLocale() ?? $this->locale; + $this->locale = $this->request->getCurrentRequest()?->getLocale() ?? $this->locale; //Return repository class instance //XXX: router, slugger, translator and locale arguments will be ignored by default -- 2.41.0