Author: igorg
Date: Thu Oct 16 01:04:35 2014
New Revision: 425667

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=425667
Log:

Fix loss of voice after second call drops (on a second line) in case using 
multiple lines on unistim phones. There is regression was introduced in r391379.

Reported by: Rustam Khankishyiev
(closes issue ASTERISK-23846)


Modified:
    branches/11/channels/chan_unistim.c

Modified: branches/11/channels/chan_unistim.c
URL: 
http://svnview.digium.com/svn/asterisk/branches/11/channels/chan_unistim.c?view=diff&rev=425667&r1=425666&r2=425667
==============================================================================
--- branches/11/channels/chan_unistim.c (original)
+++ branches/11/channels/chan_unistim.c Thu Oct 16 01:04:35 2014
@@ -4841,17 +4841,19 @@
        } else if (sub->subtype == SUB_RING) {
                send_no_ring(s);
                for (i = 0; i < FAVNUM; i++) {
-                       if (!soft_key_visible(s->device, i))
+                       if (!soft_key_visible(s->device, i)) {
                                continue;
-                       if (d->ssub[i] != sub)
+                       }
+                       if (d->ssub[i] != sub) {
+                               if (d->ssub[i] != NULL) { /* Found other 
subchannel active other then hangup'ed one */
+                                       end_call = 0;
+                               }
                                continue;
+                       }
                        if (is_key_line(d, i) && !strcmp(l->name, 
d->sline[i]->name)) {
                                send_favorite_short(i, FAV_LINE_ICON, s);
                                d->ssub[i] = NULL;
                                continue;
-                       }
-                       if (d->ssub[i] != NULL) { /* Found other subchannel 
active other then hangup'ed one */
-                               end_call = 0;
                        }
                }
        }


-- 
_____________________________________________________________________
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

svn-commits mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/svn-commits

Reply via email to