forked from abner/for-legacy-web
Handle subdomains on URLs
parent
db43c02e01
commit
5c01944cfb
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Reference in New Issue