Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jornetsimon committed Aug 25, 2024
1 parent a355b71 commit 94f15f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ export const LOCALE: string = config['locale'] || 'en-US';
export const LOG_LEVEL: string = config['logLevel'] || 'info';
export const ACCOUNTS: ACCOUNT[] = config['accounts'];
export const TEST_NOTIFIERS: boolean = config?.['testNotifiers'];
export const SEND_START_NOTIFICATION: string = config?.['sendStartNotification'] || true;
export const SEND_START_NOTIFICATION: string = config?.['sendStartNotification'] ?? true;
export const CRON_SCHEDULE: string = config?.['cronSchedule'] || '* * * * *';

0 comments on commit 94f15f3

Please sign in to comment.