dect
/
asterisk
Archived
13
0
Fork 0

Merged revisions 259664 via svnmerge from

https://origsvn.digium.com/svn/asterisk/branches/1.4

........
  r259664 | jpeeler | 2010-04-28 12:13:29 -0500 (Wed, 28 Apr 2010) | 4 lines
  
  Do not play goodbye prompt after timeout of message review.
  
  ABE-2124
........


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@259672 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
jpeeler 2010-04-28 17:18:43 +00:00
parent 7e91bd6da5
commit 2911035fa6
1 changed files with 2 additions and 2 deletions

View File

@ -12991,10 +12991,10 @@ static int play_record_review(struct ast_channel *chan, char *playfile, char *re
}
}
}
if (outsidecaller)
ast_play_and_wait(chan, "vm-goodbye");
if (cmd == 't')
cmd = 0;
else if (outsidecaller) /* won't play if time out occurs */
ast_play_and_wait(chan, "vm-goodbye");
return cmd;
}