浏览代码

Remove cancel when it is cancelled

Juan Carlos González Cabrero 9 年之前
父节点
当前提交
9422b77ab7

+ 7 - 16
src/com/owncloud/android/datamodel/UploadsStorageManager.java

@@ -506,8 +506,8 @@ public class UploadsStorageManager extends Observable {
 
         if (uploadResult.isCancelled()) {
             removeUpload(
-                    upload.getAccount().name,
-                    upload.getRemotePath()
+                upload.getAccount().name,
+                upload.getRemotePath()
             );
         } else {
 
@@ -519,20 +519,11 @@ public class UploadsStorageManager extends Observable {
                         upload.getRemotePath()
                 );
             } else {
-                // TODO: Disable for testing of menu actions in uploads view
-                if (shouldRetryFailedUpload(uploadResult)) {
-                    updateUploadStatus(
-                        upload.getOCUploadId(),
-                        UploadStatus.UPLOAD_FAILED,
-                        UploadResult.fromOperationResult(uploadResult),
-                        upload.getRemotePath());
-                } else {
-                    updateUploadStatus(
-                        upload.getOCUploadId(),
-                        UploadStatus.UPLOAD_FAILED,
-                        UploadResult.fromOperationResult(uploadResult),
-                        upload.getRemotePath());
-                }
+                updateUploadStatus(
+                    upload.getOCUploadId(),
+                    UploadStatus.UPLOAD_FAILED,
+                    UploadResult.fromOperationResult(uploadResult),
+                    upload.getRemotePath());
             }
         }
     }

+ 8 - 9
src/com/owncloud/android/files/services/FileUploader.java

@@ -645,6 +645,7 @@ public class FileUploader extends Service
          */
         public void cancel(OCUpload storedUpload) {
             cancel(storedUpload.getAccountName(), storedUpload.getRemotePath());
+
         }
 
         /**
@@ -659,7 +660,7 @@ public class FileUploader extends Service
             UploadFileOperation upload = removeResult.first;
             if (upload == null &&
                     mCurrentUpload != null && mCurrentAccount != null &&
-                    mCurrentUpload.getRemotePath().startsWith(remotePath) &&
+                    remotePath.contains(mCurrentUpload.getFileName()) &&
                     accountName.equals(mCurrentAccount.name)) {
 
                 upload = mCurrentUpload;
@@ -667,14 +668,12 @@ public class FileUploader extends Service
             if (upload != null) {
                 boolean pending = !upload.isUploadInProgress();
                 upload.cancel();
-                if (pending) {
-                    // need to update now table in mUploadsStorageManager,
-                    // since the operation will not get to be run by FileUploader#uploadFile
-                    mUploadsStorageManager.removeUpload(
-                            accountName,
-                            remotePath
-                    );
-                }
+                // need to update now table in mUploadsStorageManager,
+                // since the operation will not get to be run by FileUploader#uploadFile
+                mUploadsStorageManager.removeUpload(
+                        accountName,
+                        remotePath
+                );
             }
         }