VoiceDownload: fix doing nothing on discord desktop app
This commit is contained in:
parent
b1cc67a860
commit
025193533d
1 changed files with 4 additions and 1 deletions
|
@ -28,9 +28,12 @@ export default definePlugin({
|
|||
<a
|
||||
className="vc-voice-download"
|
||||
href={src}
|
||||
download="voice-message.ogg"
|
||||
onClick={e => e.stopPropagation()}
|
||||
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 />
|
||||
</a>
|
||||
|
|
Loading…
Reference in a new issue