Merge branch 'dev' into immediate-finds
This commit is contained in:
commit
f65749e2d4
|
@ -139,7 +139,7 @@ ${makeCodeblock(enabledPlugins.join(", "))}
|
|||
const roles = GuildMemberStore.getSelfMember(VENCORD_GUILD_ID)?.roles;
|
||||
if (!roles || TrustedRolesIds.some(id => roles.includes(id))) return;
|
||||
|
||||
if (IS_UPDATER_DISABLED) {
|
||||
if (!IS_WEB && IS_UPDATER_DISABLED) {
|
||||
return Alerts.show({
|
||||
title: "Hold on!",
|
||||
body: <div>
|
||||
|
|
|
@ -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