Update fifo_member.lua

This commit is contained in:
FusionPBX 2024-05-28 14:37:53 -06:00 committed by GitHub
parent c27f287651
commit 5ca870a045
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 11 additions and 0 deletions

View File

@ -40,6 +40,17 @@ if (session:ready()) then
fifo_lag = session:getVariable("fifo_lag");
end
--set default values
if (fifo_simo == nil) then
fifo_simo = '';
end
if (fifo_timeout == nil) then
fifo_timeout = '';
end
if (fifo_lag == nil) then
fifo_lag = '';
end
--sleep
if (session:ready()) then
session:sleep(500);