Skip to content

Commit

Permalink
fix: add parameter partitioned to clear a cookie on logout (#374)
Browse files Browse the repository at this point in the history
  • Loading branch information
misaert authored Mar 13, 2024
1 parent 21ace61 commit 19d3365
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion EventListener/LogoutEventListener.php
Original file line number Diff line number Diff line change
Expand Up @@ -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']
);
}
}
Expand Down

0 comments on commit 19d3365

Please sign in to comment.