Fixes to make SO login work. GitHub now works also (was a FF plugin bug)
This commit is contained in:
+2
-2
@@ -177,7 +177,7 @@ return [
|
||||
|
|
||||
*/
|
||||
|
||||
'http_only' => true,
|
||||
'http_only' => env('SESSION_HTTPONLY', true),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
@@ -192,6 +192,6 @@ return [
|
||||
|
|
||||
*/
|
||||
|
||||
'same_site' => 'lax', // this was changed, leaving it as 'null' caused session to be reset during oAuth2 login
|
||||
'same_site' => env('SESSION_SAMESITE', null), // this was changed, leaving it as 'null' caused session to be reset during oAuth2 login
|
||||
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user