We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a72c28 commit 56f5629Copy full SHA for 56f5629
1 file changed
packages/issuer-rest/lib/OID4VCIServer.ts
@@ -181,7 +181,7 @@ export class OID4VCIServer {
181
this._issuer = opts?.issuer ? opts.issuer : buildVCIFromEnvironment()
182
this._asClientOpts =
183
opts.asClientOpts || this._issuer.asClientOpts ? ({ ...opts.asClientOpts, ...this._issuer.asClientOpts } as ClientMetadata) : undefined
184
- this._wellknownHostLocation = opts?.wellKnownHostLocation ?? (process.env.WELLKNOWN_HOST_LOCATION as WellKnownHostLocation)
+ this._wellknownHostLocation = opts?.wellKnownHostLocation ?? (process.env.WELLKNOWN_HOST_LOCATION as WellKnownHostLocation) ?? WellKnownHostLocation.AT_BOTH
185
pushedAuthorizationEndpoint(this.router, this.issuer, this.authRequestsData)
186
187
// Create root router for alternative .well-known endpoints if needed
0 commit comments