Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion lib/saml2.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -559,7 +559,9 @@ module.exports.ServiceProvider =
return cb ex
delete uri.search # If you provide search and query search overrides query :/
if options.sign_get_request
_.extend(uri.query, sign_request(deflated.toString('base64'), @private_key, options.relay_state))
# adding this try/catch to stop async uncaught errors from passing through
try _.extend(uri.query, sign_request(deflated.toString('base64'), @private_key, options.relay_state))
catch error then return cb(error)
else
uri.query.SAMLRequest = deflated.toString 'base64'
uri.query.RelayState = options.relay_state if options.relay_state?
Expand Down