forked from abner/for-legacy-web
Handle subdomains on URLs
This commit is contained in:
@@ -172,7 +172,7 @@ export default function Renderer({ content, disallowBigEmoji }: MarkdownProps) {
|
||||
try {
|
||||
const url = new URL(href, location.href);
|
||||
|
||||
if (url.hostname === location.hostname) {
|
||||
if (url.hostname.replace(/^[^.]+\./g, "") === location.hostname.replace(/^[^.]+\./g, "")) {
|
||||
internal = true;
|
||||
element.addEventListener(
|
||||
"click",
|
||||
|
||||
Reference in New Issue
Block a user