Skip to content

Commit

Permalink
fix(contacts): Fix 5875
Browse files Browse the repository at this point in the history
  • Loading branch information
QHivert committed Sep 25, 2023
1 parent 8604389 commit ff263b9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion SoObjects/SOGo/WORequest+SOGo.m
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,9 @@ - (BOOL) isMacOSXCalendar

- (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

0 comments on commit ff263b9

Please sign in to comment.