From be12528a0ee8e8c3bb23ac37247e76482b060fbc Mon Sep 17 00:00:00 2001 From: Francis Lachapelle Date: Tue, 4 Oct 2016 06:14:41 -0400 Subject: [PATCH] Fix condition in UIxPreferences.m --- UI/PreferencesUI/UIxPreferences.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/UI/PreferencesUI/UIxPreferences.m b/UI/PreferencesUI/UIxPreferences.m index b5a684626..589d3e88b 100644 --- a/UI/PreferencesUI/UIxPreferences.m +++ b/UI/PreferencesUI/UIxPreferences.m @@ -1671,8 +1671,8 @@ static NSArray *reminderValues = nil; stringByTrimmingSpaces]; /* We make sure that the "custom" value is different from the system email */ - if ([value length] == 0) - || [[user systemEmail] isEqualToString: value]) + if ([value length] == 0 + || [[user systemEmail] isEqualToString: value]) value = nil; [userDefaults setMailCustomEmail: value];