From 3f9644bef064498c37c40aaceaf8a4304f9437f8 Mon Sep 17 00:00:00 2001 From: Mark Crane Date: Thu, 14 Aug 2014 09:00:41 +0000 Subject: [PATCH] Add a short delay before playing the audio --- resources/install/scripts/confirm.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/resources/install/scripts/confirm.lua b/resources/install/scripts/confirm.lua index 077ee7814e..16b5d92592 100644 --- a/resources/install/scripts/confirm.lua +++ b/resources/install/scripts/confirm.lua @@ -31,6 +31,9 @@ --answer the call session:answer(); + --add short delay before playing the audio + session:sleep(1000); + --get the variables context = session:getVariable("context"); sounds_dir = session:getVariable("sounds_dir");