diff --git a/src/services/HistoryService.ts b/src/services/HistoryService.ts index da48f94601..1270fb896f 100644 --- a/src/services/HistoryService.ts +++ b/src/services/HistoryService.ts @@ -13,7 +13,7 @@ export class HistoryService { } get currentId(): string { - return IS_BROWSER ? window.location.hash.substring(1) : ''; + return IS_BROWSER ? decodeURIComponent(window.location.hash.substring(1)) : ''; } linkForId(id: string) {