Update Renderer.tsx

This commit is contained in:
Jamie 2021-08-23 04:38:21 -07:00 committed by GitHub
parent 852cc22dc2
commit c4b881a525
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -32,6 +32,13 @@ declare global {
} }
} }
const ALLOWED_ORIGINS = [
location.hostname,
'app.revolt.chat',
'nightly.revolt.chat',
'local.revolt.chat',
];
// Handler for code block copy. // Handler for code block copy.
if (typeof window !== "undefined") { if (typeof window !== "undefined") {
window.copycode = function (element: HTMLDivElement) { window.copycode = function (element: HTMLDivElement) {
@ -172,7 +179,7 @@ export default function Renderer({ content, disallowBigEmoji }: MarkdownProps) {
try { try {
const url = new URL(href, location.href); const url = new URL(href, location.href);
if (url.hostname.replace(/^[^.]+\./g, "") === location.hostname.replace(/^[^.]+\./g, "") && ["nightly.", "app.", "local."].includes(url.hostname.match(/^[^.]+\./g)?.[0] ?? "")) { if (ALLOWED_ORIGINS.includes(url.hostname)) {
internal = true; internal = true;
element.addEventListener( element.addEventListener(
"click", "click",