summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source/features/forked-to.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/features/forked-to.tsx b/source/features/forked-to.tsx
index 1e08c0f6..710935c9 100644
--- a/source/features/forked-to.tsx
+++ b/source/features/forked-to.tsx
@@ -96,7 +96,7 @@ async function init(): Promise<void | false> {
// If the feature has already run on this page, only update its links
if (forks && select.exists('.rgh-forked-button')) {
for (const fork of forks) {
- select<HTMLAnchorElement>(`.rgh-forked-link[href^="/${fork}/"]`)!.href = createLink(fork);
+ select<HTMLAnchorElement>(`.rgh-forked-link[href^="/${fork}"]`)!.href = createLink(fork);
}
return;