Skip to content
This repository has been archived by the owner on Jan 5, 2025. It is now read-only.

Commit

Permalink
small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rodriguestiago0 committed Jul 9, 2024
1 parent f911082 commit 64c9a53
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ You need to manually create the accounts inside Actual, and then map them to the
$ myedenredactual <command> <flags>
Commands & Options
ls List currently syncing accounts
import Sync bank accounts to Actual Budget
config Print the location of the config file
Expand Down
4 changes: 2 additions & 2 deletions index-cron.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ console.info("Defined cron is: ", cronExpression)
const interval = parser.parseExpression(cronExpression);
console.info('Next run:', interval.next().toISOString());

cron.schedule(cronExpression, () => {
importMyEdenredTransactions();
cron.schedule(cronExpression, async () => {
await importMyEdenredTransactions();
console.info('Next run:', interval.next().toISOString());
});

0 comments on commit 64c9a53

Please sign in to comment.