提交 f6cc8e54 authored 作者: Brian West's avatar Brian West

/FS-10058: [mod_voicemail] voicemail timestamp plays in military time #resolve

上级 97641378
......@@ -392,7 +392,12 @@ static switch_status_t en_say_time(switch_say_file_handle_t *sh, char *tosay, sw
}
if (hour > 12) {
mil++;
if ( mil ) {
mil++;
} else {
hour -= 12;
pm = 1;
}
} else if (hour == 12) {
pm = 1;
} else if (hour == 0) {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论