mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-06 12:36:58 +00:00
Fix app_queue when working in conjunction with anthm's moh patch (bug #2891)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4301 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1968,7 +1968,7 @@ check_turns:
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
/* Don't allow return code > 0 */
|
/* Don't allow return code > 0 */
|
||||||
if (res > 0 && res != AST_PBX_KEEPALIVE) {
|
if (res >= 0 && res != AST_PBX_KEEPALIVE) {
|
||||||
res = 0;
|
res = 0;
|
||||||
if (ringing) {
|
if (ringing) {
|
||||||
ast_indicate(chan, -1);
|
ast_indicate(chan, -1);
|
||||||
|
Reference in New Issue
Block a user