mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-08 19:08:14 +00:00
Change faulty comparison used when announcing average hold minutes and seconds
(closes issue #14227) Reported by: caspy git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@182121 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -2117,7 +2117,7 @@ static int say_position(struct queue_ent *qe, int ringing)
|
||||
if (res)
|
||||
goto playout;
|
||||
|
||||
if (avgholdmins > 1) {
|
||||
if (avgholdmins >= 1) {
|
||||
res = ast_say_number(qe->chan, avgholdmins, AST_DIGIT_ANY, qe->chan->language, NULL);
|
||||
if (res)
|
||||
goto playout;
|
||||
@@ -2132,7 +2132,7 @@ static int say_position(struct queue_ent *qe, int ringing)
|
||||
goto playout;
|
||||
}
|
||||
}
|
||||
if (avgholdsecs > 1) {
|
||||
if (avgholdsecs >= 1) {
|
||||
res = ast_say_number(qe->chan, avgholdmins > 1 ? avgholdsecs : avgholdmins * 60 + avgholdsecs, AST_DIGIT_ANY, qe->chan->language, NULL);
|
||||
if (res)
|
||||
goto playout;
|
||||
|
||||
Reference in New Issue
Block a user