mirror of
https://github.com/nextcloud/android.git
synced 2024-11-26 23:28:42 +03:00
using all files not only downloaded one
This commit is contained in:
parent
d1f9cae7f4
commit
cc3dfd6100
1 changed files with 1 additions and 1 deletions
|
@ -521,7 +521,7 @@ public class RefreshFolderOperation extends RemoteOperation {
|
|||
|
||||
|
||||
private void fetchFavoritesToSyncFromLocalData() {
|
||||
List<OCFile> children = mStorageManager.getFolderContent(mLocalFolder, true);
|
||||
List<OCFile> children = mStorageManager.getFolderContent(mLocalFolder, false);
|
||||
for (OCFile child : children) {
|
||||
if (!child.isFolder() && child.isFavorite() && !child.isInConflict()) {
|
||||
SynchronizeFileOperation operation = new SynchronizeFileOperation(
|
||||
|
|
Loading…
Reference in a new issue