Skip to content

Commit

Permalink
🐛 Fix cron syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
H1rono committed Dec 22, 2023
1 parent 99bae14 commit bc1a64d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cron/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ impl<
let sched = JobScheduler::new().await.unwrap();
sched
.add(
Job::new_async("* * * * *", move |_uuid, _l| {
Job::new_async("* * * * * * *", move |_uuid, _l| {
let card_repository = self.clone().card_repository.clone();
let image_repository = self.clone().image_repository.clone();
let bot_client = self.clone().bot_client.clone();
Expand Down

0 comments on commit bc1a64d

Please sign in to comment.