remove unproven edit

This commit is contained in:
lelo 2025-06-01 20:30:22 +00:00
parent 13cb4fecbb
commit 5345331637

View File

@ -150,8 +150,6 @@ class SimpleAudioPlayer {
// Create a “real” link to that URL and click it
const a = document.createElement('a');
a.href = downloadUrl.toString();
a.download = ''; // tell Safari “this is a download”
a.target = '_blank'; // force a real navigation on iOS
// NOTE: do NOT set a.download here we want the server's Content-Disposition to drive it
document.body.appendChild(a);
a.click();