summaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
authorLLLL Colonq <llll@colonq>2025-12-16 00:55:10 -0500
committerLLLL Colonq <llll@colonq>2025-12-16 00:55:10 -0500
commit1695185a429918ed85fe36b0b65566940174aca0 (patch)
tree8f757061df5e180dd769d1b0ac479fd0ea802da8 /crates
parentada78e2ea079051604a4dc5ae682cc23f5afd0f0 (diff)
Try not stopping
Diffstat (limited to 'crates')
-rw-r--r--crates/teleia/src/audio.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/teleia/src/audio.rs b/crates/teleia/src/audio.rs
index 974e5f7..9571745 100644
--- a/crates/teleia/src/audio.rs
+++ b/crates/teleia/src/audio.rs
@@ -34,7 +34,7 @@ impl AudioPlayingHandle {
let t = ctx.audio.current_time() + time as f64;
self.gain.gain().set_target_at_time(0.0, ctx.audio.current_time(), time as f64)
.expect("failed to fade out audio");
- self.node.stop_with_when(t).expect("failed to stop audio while fading out");
+ // self.node.stop_with_when(t).expect("failed to stop audio while fading out");
}
}