Skip to content

Commit abb3c71

Browse files
authored
Fixed everyDayAt
1 parent e624112 commit abb3c71

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/schedule.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ const FunctionExpressions = {
9797
*/
9898
everyDayAt(time = '00:00') {
9999
const [hours, minutes] = time.split(':');
100-
return `${minutes} ${hours} 0 * *`;
100+
return `${minutes} ${hours} * * *`;
101101
},
102102
/**
103103
* Run the task at a specific time on a given day of the week.

0 commit comments

Comments
 (0)