VoiceDownload: fix doing nothing on discord desktop app

main
Vendicated 4 months ago
parent b1cc67a860
commit 025193533d
No known key found for this signature in database
GPG Key ID: D66986BAF75ECF18

@ -28,9 +28,12 @@ export default definePlugin({
<a <a
className="vc-voice-download" className="vc-voice-download"
href={src} href={src}
download="voice-message.ogg"
onClick={e => e.stopPropagation()} onClick={e => e.stopPropagation()}
aria-label="Download voice message" aria-label="Download voice message"
{...IS_DISCORD_DESKTOP
? { target: "_blank" } // open externally
: { download: "voice-message.ogg" } // download directly (not supported on discord desktop)
}
> >
<this.Icon /> <this.Icon />
</a> </a>

Loading…
Cancel
Save