Skip to content

Commit

Permalink
Fix for status code
Browse files Browse the repository at this point in the history
  • Loading branch information
ockstadt authored Aug 1, 2023
1 parent 3801402 commit fa9d8df
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 fa9d8df

Please sign in to comment.