mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-06 12:36:58 +00:00
Fix a bit of odd logic for announcing position. Sync with 1.6.0's logic
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@174951 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -2126,11 +2126,11 @@ static int say_position(struct queue_ent *qe, int ringing)
|
||||
}
|
||||
|
||||
posout:
|
||||
if (announceposition == 1 || say_thanks) {
|
||||
if (qe->parent->announceposition) {
|
||||
ast_verb(3, "Told %s in %s their queue position (which was %d)\n",
|
||||
qe->chan->name, qe->parent->name, qe->pos);
|
||||
}
|
||||
if (qe->parent->announceposition) {
|
||||
ast_verb(3, "Told %s in %s their queue position (which was %d)\n",
|
||||
qe->chan->name, qe->parent->name, qe->pos);
|
||||
}
|
||||
if (say_thanks) {
|
||||
res = play_file(qe->chan, qe->parent->sound_thanks);
|
||||
}
|
||||
playout:
|
||||
|
Reference in New Issue
Block a user