Преглед изворни кода

Merge pull request #9356 from weseek/fix/next-link

fix: NextLink isCreatablePage always returns false
mergify[bot] пре 1 година
родитељ
комит
338859ff7d
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      apps/app/src/components/ReactMarkdownComponents/NextLink.tsx

+ 1 - 1
apps/app/src/components/ReactMarkdownComponents/NextLink.tsx

@@ -26,7 +26,7 @@ const isExternalLink = (href: string, siteUrl: string | undefined): boolean => {
 
 const isCreatablePage = (href: string) => {
   try {
-    const url = new URL(href);
+    const url = new URL(href, 'http://example.com');
     const pathName = url.pathname;
     return pagePathUtils.isCreatablePage(pathName);
   }