decodeURIComponent hash

This commit is contained in:
HF 2023-08-04 18:45:03 +02:00
parent 0d2f438947
commit 76bb885d09

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];