fix embed claim url
This commit is contained in:
parent
722f933052
commit
2c812da785
1 changed files with 1 additions and 1 deletions
|
@ -325,7 +325,7 @@ async function getHtml(ctx) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (requestPath.includes(embedPath)) {
|
if (requestPath.includes(embedPath)) {
|
||||||
const claimUri = requestPath.replace(embedPath, '').replace(/:/g, '#');
|
const claimUri = requestPath.replace(embedPath, '').replace(/:/g, '#').replace('/', '#');
|
||||||
const claim = await resolveClaimOrRedirect(ctx, claimUri, true);
|
const claim = await resolveClaimOrRedirect(ctx, claimUri, true);
|
||||||
|
|
||||||
if (claim) {
|
if (claim) {
|
||||||
|
|
Loading…
Reference in a new issue