aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordvossel <dvossel@f38db490-d61c-443f-a65b-d21fe96a405b>2010-01-05 23:08:50 +0000
committerdvossel <dvossel@f38db490-d61c-443f-a65b-d21fe96a405b>2010-01-05 23:08:50 +0000
commitd57335a544d74cbcd5df344929bc8ad10919a73e (patch)
tree8cbad17ca6e7cab8258b77a52ae40003cd526580
parent1f5e87bd9fd5e4ef864558f1a648224c4166b752 (diff)
fixes holdtime playback issue in app_queue
When reporting hold time, the number of seconds should be mod 60. Otherwise audio playback could be something like "2 minutes 123 seconds" rather than "2 minutes 3 seconds". Also, the "minute" sound file is missing, so for the moment until that file can be created the "minutes" file is used instead. (closes issue #16168) Reported by: nickilo Patches: patch-unified-trunk-rev-222176 uploaded by nickilo (license ) Tested by: nickilo, wonderg git-svn-id: http://svn.digium.com/svn/asterisk/trunk@237920 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r--apps/app_queue.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/apps/app_queue.c b/apps/app_queue.c
index d41d27295..c9c2473a2 100644
--- a/apps/app_queue.c
+++ b/apps/app_queue.c
@@ -4335,11 +4335,8 @@ static int try_calling(struct queue_ent *qe, const char *options, char *announce
time(&now);
holdtime = abs((now - qe->start) / 60);
- holdtimesecs = abs((now - qe->start));
- if (holdtime == 1) {
- ast_say_number(peer, holdtime, AST_DIGIT_ANY, peer->language, NULL);
- play_file(peer, qe->parent->sound_minute);
- } else {
+ holdtimesecs = abs((now - qe->start) % 60);
+ if (holdtime > 0) {
ast_say_number(peer, holdtime, AST_DIGIT_ANY, peer->language, NULL);
play_file(peer, qe->parent->sound_minutes);
}