mirror of
https://github.com/nextcloud/android.git
synced 2024-11-28 02:06:56 +03:00
Fixed a bug with detection
Signed-off-by: Mario Danic <mario@lovelyhq.com>
This commit is contained in:
parent
19195b2314
commit
37b3f6f04c
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
);
|
||||
|
||||
|
|
Loading…
Reference in a new issue