Browse Source

Fixed a bug with detection

Signed-off-by: Mario Danic <mario@lovelyhq.com>
Mario Danic 7 years ago
parent
commit
37b3f6f04c

+ 2 - 2
src/main/java/com/owncloud/android/datamodel/SyncedFolderProvider.java

@@ -82,9 +82,9 @@ public class SyncedFolderProvider extends Observable {
         int count = 0;
         Cursor cursor = mContentResolver.query(
                 ProviderMeta.ProviderTableMeta.CONTENT_URI_SYNCED_FOLDERS,
-                new String[]{ProviderMeta.ProviderTableMeta.SYNCED_FOLDER_ENABLED},
-                ProviderMeta.ProviderTableMeta.SYNCED_FOLDER_ENABLED + " == 1",
                 null,
+                ProviderMeta.ProviderTableMeta.SYNCED_FOLDER_ENABLED + " = ?",
+                new String[]{"1"},
                 null
         );