See ChangeLog.

Monotone-Parent: 33ff1424b902e24430e86c14dd3abab8c93e0a34
Monotone-Revision: 6612ce10e366b364b60432933033c8be20fa7759

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2012-03-09T17:12:59
This commit is contained in:
Francis Lachapelle
2012-03-09 17:12:59 +00:00
parent d3c138897b
commit ce5a9b6fdf
2 changed files with 7 additions and 2 deletions

View File

@@ -1,3 +1,8 @@
2012-03-12 Francis Lachapelle <flachapelle@inverse.ca>
* SoObjects/SOGo/WORequest+SOGo.m (-isIPhoneAddressBookApp): catch
the user agent of iOS 5.0.1 on iPad.
2012-03-09 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/Contacts/NGVCard+SOGo.m

View File

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