Browse Source

'Fixed. 'Upload pictures via WIFI only' is hidden when going to files and come back to settings

jabarros 10 years ago
parent
commit
68eb22929d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/com/owncloud/android/ui/activity/Preferences.java

+ 1 - 1
src/com/owncloud/android/ui/activity/Preferences.java

@@ -316,7 +316,7 @@ public class Preferences extends SherlockPreferenceActivity implements AccountMa
         
         mPrefInstantVideoUploadPathWiFi =  findPreference("instant_video_upload_on_wifi");
         mPrefInstantVideoUpload = findPreference("instant_video_uploading");
-        toggleInstantVideoOptions(((CheckBoxPreference) mPrefInstantUpload).isChecked());
+        toggleInstantVideoOptions(((CheckBoxPreference) mPrefInstantVideoUpload).isChecked());
         
         mPrefInstantVideoUpload.setOnPreferenceChangeListener(new OnPreferenceChangeListener() {