]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
make continue_on_fail trigger explicit matching and only do default behaviour when...
authorAnthony Minessale <anthony.minessale@gmail.com>
Thu, 24 Sep 2009 22:41:37 +0000 (22:41 +0000)
committerAnthony Minessale <anthony.minessale@gmail.com>
Thu, 24 Sep 2009 22:41:37 +0000 (22:41 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@14972 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/mod/applications/mod_dptools/mod_dptools.c

index c3d4ea1d545c2f105797c722f5ad51c6b37fb8bf..b282476438cd3b5c1434d3b304cdc72050824da9 100644 (file)
@@ -2122,11 +2122,6 @@ SWITCH_STANDARD_APP(audio_bridge_function)
        if (switch_ivr_originate(session, &peer_session, &cause, data, timelimit, NULL, NULL, NULL, NULL, NULL, SOF_NONE) != SWITCH_STATUS_SUCCESS) {
                switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_INFO, "Originate Failed.  Cause: %s\n", switch_channel_cause2str(cause));
 
-               /* no answer is *always* a reason to continue */
-               if (cause == SWITCH_CAUSE_NO_ANSWER || cause == SWITCH_CAUSE_NO_USER_RESPONSE || cause == SWITCH_CAUSE_ORIGINATOR_CANCEL) {
-                       return;
-               }
-
                /* 
                   if the variable continue_on_fail is set it can be:
                   'true' to continue on all failures.
@@ -2150,7 +2145,13 @@ SWITCH_STANDARD_APP(audio_bridge_function)
                                switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_DEBUG, "Continue on fail [%s]:  Cause: %s\n", continue_on_fail, cause_str);
                                return;
                        }
+               } else {
+                       /* no answer is *always* a reason to continue */
+                       if (cause == SWITCH_CAUSE_NO_ANSWER || cause == SWITCH_CAUSE_NO_USER_RESPONSE || cause == SWITCH_CAUSE_ORIGINATOR_CANCEL) {
+                               return;
+                       }
                }
+
                if (!switch_channel_test_flag(caller_channel, CF_TRANSFER) && switch_channel_get_state(caller_channel) != CS_ROUTING) {
                        switch_channel_hangup(caller_channel, cause);
                }