« get me outta code hell

stick a / at the end of homepage path - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
diff options
context:
space:
mode:
author(quasar) nebula <qznebula@protonmail.com>2022-01-02 00:11:48 -0400
committer(quasar) nebula <qznebula@protonmail.com>2022-01-02 00:11:48 -0400
commite589765bb4967aeb97885892d4af4c79422e30e5 (patch)
tree27526039619675d4e71d0631e809c9a2ca525f1e
parent0bb644e2a37ad63d86fe3b313d5f33059b3bdc43 (diff)
stick a / at the end of homepage path
-rw-r--r--src/url-spec.js2
-rw-r--r--src/util/urls.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/url-spec.js b/src/url-spec.js
index a36bb0e..d4de616 100644
--- a/src/url-spec.js
+++ b/src/url-spec.js
@@ -22,7 +22,7 @@ const urlSpec = {
             root: '',
             path: '<>',
 
-            home: '',
+            home: '/',
 
             album: 'album/<>/',
             albumCommentary: 'commentary/album/<>/',
diff --git a/src/util/urls.js b/src/util/urls.js
index 5f1d6eb..12a1651 100644
--- a/src/util/urls.js
+++ b/src/util/urls.js
@@ -38,7 +38,7 @@ export function generateURLs(urlSpec) {
         const rebasePrefix = '../'.repeat((fromGroup.prefix || '').split('/').filter(Boolean).length);
 
         const pathHelper = (toPath, toGroup) => {
-            let target = toPath;
+            let target = (toPath === '/' ? '' : toPath);
 
             let argIndex = 0;
             target = target.replaceAll('<>', () => `<${argIndex++}>`);