diff --git a/src/Symfony/Storage/SessionBag.php b/src/Symfony/Storage/SessionBag.php index 38531cb8..fb90750a 100644 --- a/src/Symfony/Storage/SessionBag.php +++ b/src/Symfony/Storage/SessionBag.php @@ -68,7 +68,7 @@ final class SessionBag implements BagInterface $session = $this->session->getCurrentRequest()->getSession(); } - if (null !== $session && $session->isStarted()) { + if (null !== $session) { return $this->session = $session; }