Skip to content

Commit

Permalink
Modified samlp.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Stanislav Frantsuzov authored and Stanislav Frantsuzov committed Sep 25, 2018
1 parent d79a7ff commit a1c5359
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/passport-wsfed-saml2/samlp.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ Samlp.prototype = {

var idpUrl = options.identityProviderUrl;
if (typeof idpUrl !== 'string' || !validUrl.isWebUri(idpUrl)) {
return callback(new Error(`Invalid identity provider URL: ${JSON.stringify(idpUrl)}`));
return callback(new Error('Invalid identity provider URL: ${JSON.stringify(idpUrl)}'));
}

var signatureAlgorithm = options.signatureAlgorithm || 'rsa-sha256';
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "passport-wsfed-saml2",
"version": "3.0.13",
"version": "3.0.14",
"description": "SAML2 Protocol and WS-Fed library",
"scripts": {
"test": "mocha --reporter spec --recursive"
Expand Down

0 comments on commit a1c5359

Please sign in to comment.