mirror of
https://github.com/signalwire/freeswitch.git
synced 2026-07-23 20:51:58 +00:00
minute is 0-59 not 1-60
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@14382 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
@@ -119,7 +119,7 @@ static int parse_exten(switch_core_session_t *session, switch_caller_profile_t *
|
||||
}
|
||||
|
||||
if (time_match && xminute) {
|
||||
time_match = switch_number_cmp(xminute, tm.tm_min + 1);
|
||||
time_match = switch_number_cmp(xminute, tm.tm_min);
|
||||
}
|
||||
|
||||
if (time_match && xminday) {
|
||||
|
||||
Reference in New Issue
Block a user