diff --git a/src/assets/js/sound.js b/src/assets/js/sound.js index a4af1d38..b6917d58 100644 --- a/src/assets/js/sound.js +++ b/src/assets/js/sound.js @@ -322,8 +322,7 @@ function stopAll() { // Stop any Web Audio sources const ctx = getAudioContext() if (ctx && ctx.state === "running") { - // Suspending and resuming is the cleanest way to halt all sources - ctx.suspend().then(() => ctx.resume()).catch(() => {}) + ctx.suspend().catch(() => {}) } // Stop HTML pool elements for (const el of htmlPool) {