Fix condition in UIxPreferences.m

pull/222/head SOGo-3.2.0
Francis Lachapelle 2016-10-03 12:36:57 -04:00
parent 9a1e2804de
commit 1a0ce5339c
1 changed files with 2 additions and 2 deletions

View File

@ -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)