Skip to content

Commit

Permalink
Merge pull request #4 from jornetsimon/fix-send-start-notification-co…
Browse files Browse the repository at this point in the history
…nfig

fix: fallback for the sendStartNotification config
  • Loading branch information
Nyrrell authored Aug 25, 2024
2 parents 4d39ef8 + 94f15f3 commit 388704a
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 388704a

Please sign in to comment.