diff --git a/app/web/src/base/page/all.tsx b/app/web/src/base/page/all.tsx index 6cb6e8e5..1c838799 100644 --- a/app/web/src/base/page/all.tsx +++ b/app/web/src/base/page/all.tsx @@ -12,8 +12,13 @@ export default page({ location.pathname.startsWith("/ed/") ) { navigate("/ed/_/_"); - } else { - navigate("/editor/_/_"); + } else if (location.pathname.startsWith("/editor")) { + const arr = location.pathname.split("/"); + if (arr.length <= 2) { + navigate("/editor/_/_"); + } else if (arr.length === 3) { + navigate(location.pathname + "/"); + } } } else { navigate("/login"); diff --git a/app/web/src/index.tsx b/app/web/src/index.tsx index 15223d5d..c2ec2588 100644 --- a/app/web/src/index.tsx +++ b/app/web/src/index.tsx @@ -10,7 +10,7 @@ const start = async () => { let react = { root: null as null | ReactRoot, }; - if (true || !["localhost", "127.0.0.1"].includes(location.hostname)) { + if (!["localhost", "127.0.0.1"].includes(location.hostname)) { const sw = await registerServiceWorker(); const cacheCurrentPage = () => { diff --git a/undefined/lmdb/user-conf.lmdb-lock b/undefined/lmdb/user-conf.lmdb-lock index cfb609eb..e0fb4523 100644 Binary files a/undefined/lmdb/user-conf.lmdb-lock and b/undefined/lmdb/user-conf.lmdb-lock differ