]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
update CHANGES to reflect new 'R' app_queue option plus a minor optimization to the...
authorDavid Vossel <dvossel@digium.com>
Wed, 23 Dec 2009 18:45:54 +0000 (18:45 +0000)
committerDavid Vossel <dvossel@digium.com>
Wed, 23 Dec 2009 18:45:54 +0000 (18:45 +0000)
(issue #16384)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@236306 65c4cc65-6c06-0410-ace0-fbb531ad65f3

CHANGES
apps/app_queue.c

diff --git a/CHANGES b/CHANGES
index 462da06f4144a78e4df8b27a76b34aed1c839e02..022ed72a493d84045abd5625894fc8ae66779e48 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -72,6 +72,10 @@ MGCP Changes
 
 Applications
 ------------
+ * Added 'R' option to app_queue.  This option stops moh and indicates ringing
+   to the caller when an Agent's phone is ringing.  This can be used to indicate
+   to the caller that their call is about to be picked up, which is nice when
+   one has been on hold for an extened period of time.
  * Added .m3u support for Mp3Player application.
  * Added progress option to the app_dial D() option.  When progress DTMF is
    present, those values are sent immediately upon receiving a PROGRESS message
index 421ddbae482794cdfbe11a4367cc8234c680d18a..a367136307c1664be82c0b4df2aebb8b702468f5 100644 (file)
@@ -5546,8 +5546,6 @@ static int queue_exec(struct ast_channel *chan, const char *data)
 
        if (ringing != 1 && args.options && (strchr(args.options, 'R'))) {
                qe.ring_when_ringing = 1;
-       } else {
-               qe.ring_when_ringing = 0;
        }
 
        if (args.options && (strchr(args.options, 'c')))