Fix tone_stream (#3043)

This error was being generated in freeswitch:
[ERR] switch_core_session.c:2683 Invalid Application play tone_stream

Needs to use application "playback" for tone_stream.

Had to use a colon instead of a space as the delimited. Otherwise it would parse the dialpan action as "playback tone_stream" and the data as "//%(274,0,913.8);%(274,0,1370.6);%(380,0,1776.7)"

Now shows -->  <action application="playback" data="tone_stream://%(274,0,913.8);%(274,0,1370.6);%(380,0,1776.7)"/>
This commit is contained in:
konradSC 2018-05-01 12:22:00 -04:00 committed by FusionPBX
parent 0125eb42e8
commit 26c87e4f46
1 changed files with 2 additions and 2 deletions

View File

@ -40,8 +40,8 @@
$apps[$x]['destinations'][$y]['field']['name'] = "var_name";
$apps[$x]['destinations'][$y]['field']['destination'] = "var_filename";
$apps[$x]['destinations'][$y]['field']['description'] = "var_description";
$apps[$x]['destinations'][$y]['select_value']['dialplan'] = "play tone_stream://\${destination}";
$apps[$x]['destinations'][$y]['select_value']['ivr'] = "play tone_stream://\${destination}";
$apps[$x]['destinations'][$y]['select_value']['dialplan'] = "playback:tone_stream://\${destination}";
$apps[$x]['destinations'][$y]['select_value']['ivr'] = "playback:tone_stream://\${destination}";
$apps[$x]['destinations'][$y]['select_label'] = "\${name}";
?>