We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15ad475 commit 2dfc367Copy full SHA for 2dfc367
1 file changed
frontend/src/components/Entry.tsx
@@ -135,7 +135,7 @@ export default function Entry() {
135
ref.querySelectorAll("a").forEach((el: HTMLElement) => {
136
try {
137
const url = new URL(el.getAttribute("href") || "")
138
- const e = entryUrlMap.get(url.origin)
+ const e = entryUrlMap.get(url.origin + url.pathname)
139
if (e) {
140
// replace external link with internal link
141
el.setAttribute("href", `/?${new URLSearchParams({
0 commit comments