diff --git a/ChangeLog b/ChangeLog index 60a5c3cd7..37a87e15c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2012-03-12 Francis Lachapelle + + * SoObjects/SOGo/WORequest+SOGo.m (-isIPhoneAddressBookApp): catch + the user agent of iOS 5.0.1 on iPad. + 2012-03-09 Wolfgang Sourdeau * SoObjects/Contacts/NGVCard+SOGo.m diff --git a/SoObjects/SOGo/WORequest+SOGo.m b/SoObjects/SOGo/WORequest+SOGo.m index c7b6b6f83..c7b76fbbb 100644 --- a/SoObjects/SOGo/WORequest+SOGo.m +++ b/SoObjects/SOGo/WORequest+SOGo.m @@ -172,8 +172,8 @@ cc = [self clientCapabilities]; - return ([[cc userAgent] rangeOfString: @"DataAccess/1.0"].location - != NSNotFound); + return ([[cc userAgent] rangeOfString: @"DataAccess/1.0"].location != NSNotFound || + [[cc userAgent] rangeOfString: @"dataaccessd/1.0"].location != NSNotFound); // Seen on iOS 5.0.1 on iPad } @end