Page 1 of 1

found a bug with in-group drop call settings:

PostPosted: Wed May 26, 2010 1:54 pm
by bobbymc
agi-VDAD_ALL_inbound.agi

due to this bug the drop action seconds are ignored

BUG:
if ( ($hold_time_option !~ /NONE/ ) && ( $holdtime_estimate_sec_diff > $hold_time_option_second ) && ($wait_in_queue < 2) )

FIX:
if ( ($hold_time_option !~ /NONE/ ) && ( $holdtime_estimate_sec_diff > $hold_time_option_seconds ) && ($wait_in_queue < 2) )

if you pay attention hold_time_option_second was missing the s at the end

PostPosted: Wed May 26, 2010 5:03 pm
by williamconley
which version?

this should be posted in the "Issue Tracker"

I find it in early versions of 2.0.5 (all i have loaded, don't have any SVN handy) from Vicibox
Code: Select all
 nano +2003 /var/lib/asterisk/agi-bin/agi-VDAD_ALL_inbound.agi


2.2.0 does not have the bug :)