From eb0d21927e8a688907877656c416bd1f058eac20 Mon Sep 17 00:00:00 2001 From: Xavier Mouton-Dubosc Date: Mon, 26 Sep 2022 14:38:01 +0200 Subject: [PATCH] Notice that Safari now supports `fastSeek()`. Baadly ? Resolve specific autostart issue on Safari iPhone #149 --- src/document_cpu.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/document_cpu.js b/src/document_cpu.js index 61242929..a1faa302 100644 --- a/src/document_cpu.js +++ b/src/document_cpu.js @@ -143,6 +143,7 @@ export const DocumentCPU = { if (audiotag.fastSeek) { // HTMLAudioElement.fastSeek() is an experimental but really fast function. Firefox only, alas + // Note that since the writing of this part, Safari aslo knows fastSeek(). It may be the root cause of some of my issues, as #149 audiotag.fastSeek(seconds); } else { try {