We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e3d0092 + 7279ec5 commit 0220f52Copy full SHA for 0220f52
src/StartSessionMiddleware.php
@@ -2,6 +2,9 @@
2
3
namespace iMi\LaravelTransSid;
4
5
+use Illuminate\Contracts\Session\Session;
6
+use Symfony\Component\HttpFoundation\Response;
7
+
8
class StartSessionMiddleware extends \Illuminate\Session\Middleware\StartSession
9
{
10
@@ -63,4 +66,14 @@ public function getSession(\Illuminate\Http\Request $request)
63
66
64
67
return $session;
65
68
}
69
70
+ protected function addCookieToResponse(Response $response, Session $session)
71
+ {
72
+ // Do not add cookie if TransSID is active
73
+ if ($session->has(self::LOCKED_FIELD)) {
74
+ return;
75
+ }
76
77
+ parent::addCookieToResponse($response, $session);
78
79
0 commit comments