|
@@ -284,30 +284,32 @@ public class FileOperationsHelper {
|
|
|
*/
|
|
|
public void cancelTransference(OCFile file) {
|
|
|
Account account = mFileActivity.getAccount();
|
|
|
- if (!file.isFolder()) {
|
|
|
- FileDownloaderBinder downloaderBinder = mFileActivity.getFileDownloaderBinder();
|
|
|
- FileUploaderBinder uploaderBinder = mFileActivity.getFileUploaderBinder();
|
|
|
- //if (downloaderBinder != null && file.isDownloading()) {
|
|
|
- if (downloaderBinder != null && downloaderBinder.isDownloading(account, file)) {
|
|
|
- // Remove etag for parent, if file is a keep_in_sync
|
|
|
- if (file.keepInSync()) {
|
|
|
- OCFile parent = mFileActivity.getStorageManager().getFileById(file.getParentId());
|
|
|
- parent.setEtag("");
|
|
|
- mFileActivity.getStorageManager().saveFile(parent);
|
|
|
- }
|
|
|
-
|
|
|
- downloaderBinder.cancel(account, file);
|
|
|
-
|
|
|
- } else if (uploaderBinder != null && uploaderBinder.isUploading(account, file)) {
|
|
|
- uploaderBinder.cancel(account, file);
|
|
|
- }
|
|
|
- } else {
|
|
|
+ if (file.isFolder()) {
|
|
|
+ // this goes to the queue!! :S
|
|
|
Intent intent = new Intent(mFileActivity, OperationsService.class);
|
|
|
intent.setAction(OperationsService.ACTION_CANCEL_SYNC_FOLDER);
|
|
|
intent.putExtra(OperationsService.EXTRA_ACCOUNT, account);
|
|
|
intent.putExtra(OperationsService.EXTRA_FILE, file);
|
|
|
mFileActivity.startService(intent);
|
|
|
+ }
|
|
|
+
|
|
|
+ // for both files and folders
|
|
|
+ FileDownloaderBinder downloaderBinder = mFileActivity.getFileDownloaderBinder();
|
|
|
+ FileUploaderBinder uploaderBinder = mFileActivity.getFileUploaderBinder();
|
|
|
+ //if (downloaderBinder != null && file.isDownloading()) {
|
|
|
+ if (downloaderBinder != null && downloaderBinder.isDownloading(account, file)) {
|
|
|
+ downloaderBinder.cancel(account, file);
|
|
|
+
|
|
|
+ // TODO - review why is this here, and solve in a better way
|
|
|
+ // Remove etag for parent, if file is a keep_in_sync
|
|
|
+ if (file.keepInSync()) {
|
|
|
+ OCFile parent = mFileActivity.getStorageManager().getFileById(file.getParentId());
|
|
|
+ parent.setEtag("");
|
|
|
+ mFileActivity.getStorageManager().saveFile(parent);
|
|
|
+ }
|
|
|
|
|
|
+ } else if (uploaderBinder != null && uploaderBinder.isUploading(account, file)) {
|
|
|
+ uploaderBinder.cancel(account, file);
|
|
|
}
|
|
|
}
|
|
|
|