diff --git a/src/client/app/utils.ts b/src/client/app/utils.ts index 26383bf5..7968158d 100644 --- a/src/client/app/utils.ts +++ b/src/client/app/utils.ts @@ -12,6 +12,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' }