diff --git a/app/screens/settings/notification_settings_mobile/notification_settings_mobile.android.js b/app/screens/settings/notification_settings_mobile/notification_settings_mobile.android.js index 56efa00cd..df248bf17 100644 --- a/app/screens/settings/notification_settings_mobile/notification_settings_mobile.android.js +++ b/app/screens/settings/notification_settings_mobile/notification_settings_mobile.android.js @@ -621,12 +621,12 @@ class NotificationSettingsMobileAndroid extends NotificationSettingsMobileBase { }; toggleBlink = () => { - NotificationPreferences.setShouldBlink(this.state.shouldBlink); + NotificationPreferences.setShouldBlink(!this.state.shouldBlink); this.setState({shouldBlink: !this.state.shouldBlink}); }; toggleVibrate = () => { - NotificationPreferences.setShouldVibrate(this.state.shouldVibrate); + NotificationPreferences.setShouldVibrate(!this.state.shouldVibrate); this.setState({shouldVibrate: !this.state.shouldVibrate}); };