diff --git a/app/screens/account_notifications/account_notifications.js b/app/screens/account_notifications/account_notifications.js index 13e940e92..b0fb77e50 100644 --- a/app/screens/account_notifications/account_notifications.js +++ b/app/screens/account_notifications/account_notifications.js @@ -120,7 +120,9 @@ class AccountNotifications extends PureComponent { let interval; if (this.props.config.EnableEmailBatching === 'true') { const emailPreferences = getPreferencesByCategory(this.props.myPreferences, Preferences.CATEGORY_NOTIFICATIONS); - interval = emailPreferences.get(Preferences.EMAIL_INTERVAL).value; + if (emailPreferences.size) { + interval = emailPreferences.get(Preferences.EMAIL_INTERVAL).value; + } } const comments = notifyProps.comments || 'never';