Преглед на файлове

'Waiting for upload' shown in uploads in line, but not currenlty transferred

David A. Velasco преди 9 години
родител
ревизия
0e8537bffc
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      src/com/owncloud/android/ui/adapter/ExpandableUploadListAdapter.java

+ 1 - 1
src/com/owncloud/android/ui/adapter/ExpandableUploadListAdapter.java

@@ -501,7 +501,7 @@ public class ExpandableUploadListAdapter extends BaseExpandableListAdapter imple
             case UPLOAD_IN_PROGRESS:
                 status = mParentActivity.getString(R.string.uploads_view_later_waiting_to_upload);
                 FileUploader.FileUploaderBinder binder = mParentActivity.getFileUploaderBinder();
-                if (binder != null) {
+                if (binder != null && binder.isUploadingNow(upload)) {
                     /// really uploading, bind the progress bar to listen for progress updates
                     status = mParentActivity.getString(R.string.uploader_upload_in_progress_ticker);
                 }