mirror of
https://github.com/moparisthebest/davmail
synced 2025-01-08 04:08:12 -05:00
Caldav: fix OSX Mountain Lion (iCal 6) support
git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@1983 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
parent
939115a471
commit
0f47689ecd
@ -1440,7 +1440,9 @@ public class CaldavConnection extends AbstractConnection {
|
|||||||
}
|
}
|
||||||
|
|
||||||
protected boolean isIcal5() {
|
protected boolean isIcal5() {
|
||||||
return isUserAgent("CoreDAV/") || isUserAgent("iOS/5");
|
return isUserAgent("CoreDAV/") || isUserAgent("iOS/5")
|
||||||
|
// iCal 6
|
||||||
|
|| isUserAgent("Mac OS X/10.8");
|
||||||
}
|
}
|
||||||
|
|
||||||
protected boolean isUserAgent(String key) {
|
protected boolean isUserAgent(String key) {
|
||||||
|
Loading…
Reference in New Issue
Block a user