diff --git a/src/bundles/explore.js b/src/bundles/explore.js index 34bd4b40..b8a41f3d 100644 --- a/src/bundles/explore.js +++ b/src/bundles/explore.js @@ -103,7 +103,7 @@ const makeBundle = () => { } // add the root cid to the start pathParts.unshift(cid) - const path = pathParts.join('/') + const path = pathParts.map((part) => encodeURIComponent(part)).join('/') const hash = `#/explore/${path}` store.doUpdateHash(hash) }