From ad24e21bd548e25942a8c41286e26f86a5bfed25 Mon Sep 17 00:00:00 2001 From: qb20nh Date: Sat, 6 Dec 2025 09:37:09 +0900 Subject: [PATCH] fix: mailto link in privacy page --- docs/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.html b/docs/index.html index 2928b7b..564c417 100644 --- a/docs/index.html +++ b/docs/index.html @@ -169,7 +169,7 @@ e.preventDefault(); window.location.hash = target; }); - } else if (!href.startsWith('http') && !href.startsWith(getPathPrefix())) { + } else if (!href.startsWith('http') && !href.startsWith('mailto:') && !href.startsWith(getPathPrefix())) { link.setAttribute('href', getPathPrefix() + href); } });