Minor bug fixes and improvements

* Contacts sync: if REPORT addressbook-query doesn't work, don't ignore other exceptions than HTTP 40x errors
* dav4android: Digest auth improvements (e.g. for OS X Calendar Server)
* vcard4android: better support for exotic IMPP handles and names
pull/2/head
Ricki Hirner 9 years ago
parent 6f429328ef
commit 81d13576e8
No known key found for this signature in database
GPG Key ID: C4A212CF0B2B4566

@ -117,10 +117,10 @@ public class CalendarSyncManager extends SyncManager {
// fetch list of remote VEVENTs and build hash table to index file name
davCalendar().calendarQuery("VEVENT");
remoteResources = new HashMap<>(davCollection.members.size());
for (DavResource vCard : davCollection.members) {
String fileName = vCard.fileName();
for (DavResource iCal : davCollection.members) {
String fileName = iCal.fileName();
log.debug("Found remote VEVENT: " + fileName);
remoteResources.put(fileName, vCard);
remoteResources.put(fileName, iCal);
}
}

@ -118,9 +118,11 @@ public class ContactsSyncManager extends SyncManager {
davAddressBook().addressbookQuery();
} catch(HttpException e) {
if (e.status/100 == 4) {
log.warn("Server error on REPORT addressbook query, falling back to PROPFIND", e);
log.warn("Server error on REPORT addressbook-query, falling back to PROPFIND", e);
davAddressBook().propfind(1, GetETag.NAME);
}
} else
// no defined fallback, pass through exception
throw e;
}
remoteResources = new HashMap<>(davCollection.members.size());

@ -437,7 +437,7 @@ abstract public class SyncManager {
// add all unseen (= remotely added) remote contacts
if (!remoteResources.isEmpty()) {
log.info("New VCards have been found on the server: " + TextUtils.join(", ", remoteResources.keySet()));
log.info("New resources have been found on the server: " + TextUtils.join(", ", remoteResources.keySet()));
toDownload.addAll(remoteResources.values());
}
}

@ -1 +1 @@
Subproject commit 8064d17d934345adf4dbec66b73c5c8fdb8046c1
Subproject commit f254b6e0faf10dc74d7849b77281cffcacb7774d

@ -1 +1 @@
Subproject commit 1077033b256aade6e6f66931878f908cd13067a5
Subproject commit 0d84afa1680c1ef35db52d63c4eee0b23607dd2b
Loading…
Cancel
Save