projects
/
pub
/
Android
/
ownCloud.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Adding cancellation to uploads (WIP)
[pub/Android/ownCloud.git]
/
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
4b8393d
..
e7d28ff
100644
(file)
--- a/
src/com/owncloud/android/files/services/InstantUploadService.java
+++ b/
src/com/owncloud/android/files/services/InstantUploadService.java
@@
-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
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
+ }
}
}
}
}
}
}