mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-04-12 00:38:51 +00:00
Fix condition in UIxPreferences.m
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user