decodeURIComponent hash

This commit is contained in:
HF 2023-08-04 18:45:03 +02:00
parent 5d5eb38fc2
commit 7fe938bad2

View File

@ -52,7 +52,7 @@ export type CanvasState = {
function getViewFromURL(canvases) {
const { hash } = window.location;
try {
const almost = hash.substring(1)
const almost = decodeURIComponent(hash).substring(1)
.split(',');
const canvasIdent = almost[0];