X-Git-Url: http://git.linex4red.de/pub/Android/ownCloud.git/blobdiff_plain/ceb3dfdd059dd4f2aca8a784476fb60e610b78f6..b12ca42b45b69cee9e15de0abe5758f3d75f527e:/src/com/owncloud/android/files/services/InstantUploadService.java diff --git a/src/com/owncloud/android/files/services/InstantUploadService.java b/src/com/owncloud/android/files/services/InstantUploadService.java index 87430697..e7d28ffe 100644 --- a/src/com/owncloud/android/files/services/InstantUploadService.java +++ b/src/com/owncloud/android/files/services/InstantUploadService.java @@ -22,7 +22,7 @@ import java.util.HashMap; import java.util.LinkedList; import java.util.List; -import com.owncloud.android.utils.OwnCloudClientUtils; +import com.owncloud.android.network.OwnCloudClientUtils; import eu.alefzero.webdav.WebdavClient; @@ -128,7 +128,11 @@ public class InstantUploadService extends Service { WebdavClient wdc = OwnCloudClientUtils.createOwnCloudClient(account, getApplicationContext()); wdc.createDirectory(INSTANT_UPLOAD_DIR); // fail could just mean that it already exists; put will be tried anyway - wdc.putFile(filepath, INSTANT_UPLOAD_DIR + "/" + filename, mimetype); + try { + wdc.putFile(filepath, INSTANT_UPLOAD_DIR + "/" + filename, mimetype); + } catch (Exception e) { + // nothing to do; this service is deprecated, indeed + } } } }