From 9253134612c0b56ddd5d9d403ecc26e2d375c0e2 Mon Sep 17 00:00:00 2001 From: Saturnino Abril Date: Tue, 5 Mar 2019 04:51:42 +0800 Subject: [PATCH] fix default email interval from never to immediate (#2614) --- app/screens/settings/notification_settings_email/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/screens/settings/notification_settings_email/index.js b/app/screens/settings/notification_settings_email/index.js index c4f67f01c..6010a1073 100644 --- a/app/screens/settings/notification_settings_email/index.js +++ b/app/screens/settings/notification_settings_email/index.js @@ -25,8 +25,8 @@ function mapStateToProps(state) { state, Preferences.CATEGORY_NOTIFICATIONS, Preferences.EMAIL_INTERVAL, - Preferences.INTERVAL_NEVER.toString(), - ) || '0'; + Preferences.INTERVAL_IMMEDIATE.toString(), + ); return { enableEmailBatching,