Fix condition in UIxPreferences.m

This commit is contained in:
Francis Lachapelle
2016-10-04 06:14:41 -04:00
parent 0fc3791f37
commit be12528a0e
+2 -2
View File
@@ -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];