We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a418075 commit a126717Copy full SHA for a126717
packages/css/src/uma/UmaClient.ts
@@ -288,7 +288,7 @@ export class UmaClient implements SingleThreaded {
288
let { resource_registration_endpoint: endpoint } = await this.fetchUmaConfig(issuer);
289
const knownUmaId = await this.umaIdStore.get(resource.path);
290
if (knownUmaId) {
291
- endpoint = joinUrl(endpoint, knownUmaId);
+ endpoint = joinUrl(endpoint, encodeURIComponent(knownUmaId));
292
}
293
294
const description: ResourceDescription = {
0 commit comments