Skip to content

Commit

Permalink
Merge pull request #122 from ockstadt/patch-2
Browse files Browse the repository at this point in the history
Fix for status code
  • Loading branch information
upwebdesign authored Aug 2, 2023
2 parents c4212c3 + fa9d8df commit e623f4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Listeners/SamlLogin.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public function handle(Login $event)
request()->filled('SAMLRequest') &&
!request()->is('saml/logout')
) {
abort(response(SamlSso::dispatchSync($event->guard)), 302);
abort(response(SamlSso::dispatchSync($event->guard), 302));
}
}
}

0 comments on commit e623f4a

Please sign in to comment.