From 1a0ce5339ca9a1c37d60430dcb5d809b3fe0efbc Mon Sep 17 00:00:00 2001 From: Francis Lachapelle Date: Mon, 3 Oct 2016 12:36:57 -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 a451682c3..29aa09f55 100644 --- a/UI/PreferencesUI/UIxPreferences.m +++ b/UI/PreferencesUI/UIxPreferences.m @@ -1861,8 +1861,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; if (value)