From b9f7eba63fd62992ad6625676af0e93883cf71aa Mon Sep 17 00:00:00 2001 From: mahuntington Date: Mon, 1 Apr 2024 18:54:18 -0400 Subject: [PATCH] Update 'src/components/timer.vue' --- src/components/timer.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/timer.vue b/src/components/timer.vue index 6ba8cfd..ccecd82 100644 --- a/src/components/timer.vue +++ b/src/components/timer.vue @@ -77,7 +77,7 @@ this.running = true; this.intervalID = setInterval(()=>{ - if(this.micLevel > -1){ + if(this.micThreshold > -1){ const array = new Uint8Array(this.analyser.frequencyBinCount); this.analyser.getByteFrequencyData(array);