@bedrock/vc-delivery 4.1.1 → 4.1.2

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/openId.js +1 -1
  2. package/package.json +1 -1
package/lib/openId.js CHANGED
@@ -621,7 +621,7 @@ async function _getAuthorizationRequest({req}) {
621
621
  }
622
622
  if(client_id_scheme) {
623
623
  authorizationRequest.client_id_scheme = client_id_scheme;
624
- } else if(authorizationRequest.client_id_scheme === 'undefined') {
624
+ } else if(authorizationRequest.client_id_scheme === undefined) {
625
625
  authorizationRequest.client_id_scheme = 'redirect_uri';
626
626
  }
627
627
  if(client_metadata) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bedrock/vc-delivery",
3
- "version": "4.1.1",
3
+ "version": "4.1.2",
4
4
  "type": "module",
5
5
  "description": "Bedrock Verifiable Credential Delivery",
6
6
  "main": "./lib/index.js",