[asterisk-commits] jpeeler: trunk r259672 - in /trunk: ./ apps/app_voicemail.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Apr 28 12:18:46 CDT 2010
Author: jpeeler
Date: Wed Apr 28 12:18:43 2010
New Revision: 259672
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=259672
Log:
Merged revisions 259664 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4
........
r259664 | jpeeler | 2010-04-28 12:13:29 -0500 (Wed, 28 Apr 2010) | 4 lines
Do not play goodbye prompt after timeout of message review.
ABE-2124
........
Modified:
trunk/ (props changed)
trunk/apps/app_voicemail.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.
Modified: trunk/apps/app_voicemail.c
URL: http://svnview.digium.com/svn/asterisk/trunk/apps/app_voicemail.c?view=diff&rev=259672&r1=259671&r2=259672
==============================================================================
--- trunk/apps/app_voicemail.c (original)
+++ trunk/apps/app_voicemail.c Wed Apr 28 12:18:43 2010
@@ -12991,10 +12991,10 @@
}
}
}
- if (outsidecaller)
- ast_play_and_wait(chan, "vm-goodbye");
if (cmd == 't')
cmd = 0;
+ else if (outsidecaller) /* won't play if time out occurs */
+ ast_play_and_wait(chan, "vm-goodbye");
return cmd;
}
More information about the asterisk-commits
mailing list