Эх сурвалжийг харах

Move things around

Signed-off-by: Mario Danic <mario@lovelyhq.com>
Mario Danic 7 жил өмнө
parent
commit
d658be5d34

+ 7 - 7
src/main/java/com/owncloud/android/files/services/FileUploader.java

@@ -465,6 +465,13 @@ public class FileUploader extends Service
         }
         OwnCloudVersion ocv = AccountUtils.getServerVersion(account);
 
+        boolean chunked = ocv.isChunkedUploadSupported();
+
+        // temporary hack to speed up upload on wifi
+        if (Device.getNetworkType(MainApp.getAppContext()).equals(JobRequest.NetworkType.UNMETERED)) {
+            chunked = false;
+        }
+
         if (!retry) {
             if (!(intent.hasExtra(KEY_LOCAL_FILE) ||
                     intent.hasExtra(KEY_FILE))) {
@@ -498,13 +505,6 @@ public class FileUploader extends Service
             boolean onWifiOnly = intent.getBooleanExtra(KEY_WHILE_ON_WIFI_ONLY, false);
             boolean whileChargingOnly = intent.getBooleanExtra(KEY_WHILE_CHARGING_ONLY, false);
 
-            boolean chunked = ocv.isChunkedUploadSupported();
-
-            // temporary hack to speed up upload on wifi
-            if (Device.getNetworkType(MainApp.getAppContext()).equals(JobRequest.NetworkType.UNMETERED)) {
-                chunked = false;
-            }
-
             if (intent.hasExtra(KEY_FILE) && files == null) {
                 Log_OC.e(TAG, "Incorrect array for OCFiles provided in upload intent");
                 return Service.START_NOT_STICKY;