From 19d3365c2df8f7fee1abc1ca1e1cb64ceb129841 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Isaert?= Date: Wed, 13 Mar 2024 23:29:49 +0100 Subject: [PATCH] fix: add parameter `partitioned` to clear a cookie on logout (#374) --- EventListener/LogoutEventListener.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/EventListener/LogoutEventListener.php b/EventListener/LogoutEventListener.php index 68c574b..9d52e2c 100644 --- a/EventListener/LogoutEventListener.php +++ b/EventListener/LogoutEventListener.php @@ -103,7 +103,8 @@ public function onLogout(LogoutEvent $event): void $this->cookieSettings['domain'], $this->cookieSettings['secure'], $this->cookieSettings['http_only'], - $this->cookieSettings['same_site'] + $this->cookieSettings['same_site'], + $this->cookieSettings['partitioned'] ); } }