From c2a3b9d7874bdc258208f65f18cc89dd68707368 Mon Sep 17 00:00:00 2001 From: Beingpax Date: Sat, 2 Aug 2025 19:30:46 +0545 Subject: [PATCH] Fix 'No Audio Detected' notification timing - increase delays from 2s/8s to 5s/12s to prevent false positives --- VoiceInk/Recorder.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VoiceInk/Recorder.swift b/VoiceInk/Recorder.swift index 2228140..9ffe556 100644 --- a/VoiceInk/Recorder.swift +++ b/VoiceInk/Recorder.swift @@ -120,7 +120,7 @@ class Recorder: ObservableObject { } audioLevelCheckTask = Task { - let notificationChecks: [TimeInterval] = [2.0, 8.0] + let notificationChecks: [TimeInterval] = [5.0, 12.0] for delay in notificationChecks { try? await Task.sleep(nanoseconds: UInt64(delay * 1_000_000_000))