Skip to content

Commit

Permalink
IBX-8322: Fixed lack of redirections to last visited pages after succ…
Browse files Browse the repository at this point in the history
…essful authentication
  • Loading branch information
konradoboza committed Jun 20, 2024
1 parent 77e36ff commit 1f9a9b7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public function onKernelException(ExceptionEvent $event): void
{
$exception = $event->getThrowable()->getPrevious();

if ($exception instanceof IbexaRepositoryException) {
if ($exception === null || $exception instanceof IbexaRepositoryException) {
return;
}

Expand Down

0 comments on commit 1f9a9b7

Please sign in to comment.