From 5345331637d50dfdcef3edbf718b38cd673a45b1 Mon Sep 17 00:00:00 2001 From: lelo Date: Sun, 1 Jun 2025 20:30:22 +0000 Subject: [PATCH] remove unproven edit --- static/audioplayer.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/static/audioplayer.js b/static/audioplayer.js index c0f25b8..9d45329 100644 --- a/static/audioplayer.js +++ b/static/audioplayer.js @@ -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();