openid-client 5.6.0 → 5.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/lib/client.js +1 -1
  2. package/package.json +1 -1
package/lib/client.js CHANGED
@@ -272,7 +272,7 @@ class BaseClient {
272
272
  }
273
273
 
274
274
  // TODO: is the replace needed?
275
- return target.href.replace('+', '%20');
275
+ return target.href.replace(/\+/g, '%20');
276
276
  }
277
277
 
278
278
  authorizationPost(params = {}) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openid-client",
3
- "version": "5.6.0",
3
+ "version": "5.6.1",
4
4
  "description": "OpenID Connect Relying Party (RP, Client) implementation for Node.js runtime, supports passportjs",
5
5
  "keywords": [
6
6
  "auth",