Fix meeting show redirects and SSO connect loop for signed-in users.
Deploy Ladill Meet / deploy (push) Successful in 1m0s

RoomController show may redirect to conference/webinar pages; SSO connect honors intended URL when already authenticated.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-07-01 21:46:09 +00:00
co-authored by Cursor
parent a18b571ae7
commit d0b6e9ff01
2 changed files with 2 additions and 4 deletions
@@ -33,9 +33,7 @@ class SsoLoginController extends Controller
$intended = (string) $request->query('redirect', route('meet.dashboard'));
if (Auth::check()) {
$redirect = $this->resolveLanding($identity, $request->user(), $intended);
return $this->safeRedirect($redirect, route('meet.dashboard'));
return $this->safeRedirect($intended, route('meet.dashboard'));
}
if (! $request->boolean('fallback')) {