0
0
mirror of https://github.com/etesync/android.git synced 2024-09-20 13:08:51 +02:00

Don't delete resources without file name (fixes #33)

This commit is contained in:
rfc2822 2013-10-27 00:14:55 +02:00
parent a01c531784
commit b2ab24afd2

View File

@ -49,7 +49,8 @@ public class SyncManager {
Log.i(TAG, "Remotely removing " + deletedResources.length + " deleted resource(s) (if not changed)");
for (Resource res : deletedResources) {
try {
dav.delete(res);
if (res.getName() != null) // is this resource even present remotely?
dav.delete(res);
} catch(PreconditionFailedException e) {
Log.i(TAG, "Locally-deleted resource has been changed on the server in the meanwhile");
}