diff --git a/src/client/app/utils.ts b/src/client/app/utils.ts index dea88b64..ced9cbb4 100644 --- a/src/client/app/utils.ts +++ b/src/client/app/utils.ts @@ -14,6 +14,7 @@ export function joinPath(base: string, path: string): string { */ export function pathToFile(path: string): string { let pagePath = path.replace(/\.html$/, '') + pagePath = decodeURIComponent(pagePath) if (pagePath.endsWith('/')) { pagePath += 'index' }