mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-08 08:51:50 +00:00
dont change device state from hangup to hangup
This commit is contained in:
parent
94b3081b02
commit
80669e8466
@ -4751,7 +4751,7 @@ static void switch_channel_check_device_state(switch_channel_t *channel, switch_
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (drec->state == SDS_DOWN && drec->last_state == SDS_DOWN) {
|
if ((drec->state == SDS_DOWN && drec->last_state == SDS_DOWN) || (drec->state == SDS_HANGUP && drec->last_state == SDS_HANGUP)) {
|
||||||
switch_mutex_unlock(drec->mutex);
|
switch_mutex_unlock(drec->mutex);
|
||||||
switch_mutex_unlock(globals.device_mutex);
|
switch_mutex_unlock(globals.device_mutex);
|
||||||
return;
|
return;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user