Skip to content

Commit ee8a118

Browse files
authored
Merge pull request #12 from oDeano/fix-everyDayAt
Fixed everyDayAt
2 parents 79fca4b + abb3c71 commit ee8a118

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)