fix(contacts): Fix 5875

This commit is contained in:
Hivert Quentin
2023-09-25 15:11:45 +02:00
parent 8604389152
commit ff263b99fe

View File

@@ -262,7 +262,9 @@
- (BOOL) isThunderbird
{
return ([[self headerForKey:@"user-agent"] rangeOfString: @"Thunderbird"].location != NSNotFound);
BOOL ret;
ret = ([[self headerForKey:@"user-agent"] rangeOfString: @"Thunderbird"].location != NSNotFound);
return ret;
}
@end