[asterisk-bugs] [JIRA] (ASTERISK-29695) SAY.CONF wrong logic when converting 24hour time to say 12 hour am/pm
Vincent Dubois (JIRA)
noreply at issues.asterisk.org
Tue Oct 19 08:47:49 CDT 2021
Vincent Dubois created ASTERISK-29695:
-----------------------------------------
Summary: SAY.CONF wrong logic when converting 24hour time to say 12 hour am/pm
Key: ASTERISK-29695
URL: https://issues.asterisk.org/jira/browse/ASTERISK-29695
Project: Asterisk
Issue Type: Bug
Security Level: None
Components: Applications/app_voicemail
Affects Versions: 16.16.0
Environment: Doesn't matter, and from what I can see all version are affected
Reporter: Vincent Dubois
in SAY.CONF there is 2 big logic errors:
_date:[I]:. => num:$[${SAY:8:2} % 12] ; hour 0-12
Modulo 12 will never return 12, but will return 0 at noon.
Should be something like:
_date:[I]:. => num:${IF($[${SAY:8:2} > 12]?$[${SAY:8:2}-12]:${SAY:8:2})}
also:
_date:[pP]:. => digits/$[ ${SAY:8:2} > 12 ? "p-m" :: "a-m" ] ; am pm
this is wrong: midnight is 00, and noon is 12, and noon should be pm, so it should be
_date:[pP]:. => digits/$[ ${SAY:8:2} >= 12 ? "p-m" :: "a-m" ] ; am pm
I guess not many people are using this, because those error have been there for a very long time, I also have a super old 1.8.7 and it was already in it.
--
This message was sent by Atlassian JIRA
(v6.2#6252)
More information about the asterisk-bugs
mailing list