diff --git a/src/window.ts b/src/window.ts index d33e05a..a217a93 100644 --- a/src/window.ts +++ b/src/window.ts @@ -91,7 +91,8 @@ async function doAfterDefiningTheWindow() { mainWindow.webContents.setWindowOpenHandler(({url}) => { // Allow about:blank (used by Vencord QuickCss popup) if (url === "about:blank") return {action: "allow"}; - + // Allow Discord stream popout + if (url === "https://discord.com/popout") return {action: "allow"}; if (url.startsWith("https:" || url.startsWith("http:") || url.startsWith("mailto:"))) { shell.openExternal(url); } else {