Skip to content

Commit

Permalink
#56 - fix(?) safari cookie/session
Browse files Browse the repository at this point in the history
seems like Safari does not accept the new session cookie with a redirect response - possibly because the URL before is a foreign domain and also redirects, some kind of user protection or whatever
  • Loading branch information
Gummibeer committed Apr 19, 2021
1 parent 0a2c7c6 commit a4d9270
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Http/Controllers/Auth/GithubController.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public function __invoke(): Response

return redirect()->intended(
route('home')
);
)->setStatusCode(200);
}

public function redirect(): RedirectResponse
Expand Down

0 comments on commit a4d9270

Please sign in to comment.