Skip to content
Prev Previous commit
Next Next commit
Update apps/meteor/app/meteor-accounts-saml/server/lib/SAML.ts
Co-authored-by: Pierre Lehnen <55164754+pierre-lehnen-rc@users.noreply.github.com>
  • Loading branch information
yasnagat and pierre-lehnen-rc authored Mar 3, 2026
commit 68438669e3f9722eaac99a14f969b3c616928f8e
2 changes: 1 addition & 1 deletion apps/meteor/app/meteor-accounts-saml/server/lib/SAML.ts
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ export class SAML {
return;
}

if (!userRedirect) {
if (!userRedirect || typeof userRedirect !== 'string') {
res.writeHead(400);
res.end('Missing redirect parameter');
return;
Expand Down
Loading