|
@@ -527,7 +527,7 @@ public class RefreshFolderOperation extends RemoteOperation {
|
|
private void fetchFavoritesToSyncFromLocalData() {
|
|
private void fetchFavoritesToSyncFromLocalData() {
|
|
List<OCFile> children = mStorageManager.getFolderContent(mLocalFolder);
|
|
List<OCFile> children = mStorageManager.getFolderContent(mLocalFolder);
|
|
for (OCFile child : children) {
|
|
for (OCFile child : children) {
|
|
- if (!child.isFolder() && child.isFavorite()) {
|
|
|
|
|
|
+ if (!child.isFolder() && child.isFavorite() && !child.isInConflict()) {
|
|
SynchronizeFileOperation operation = new SynchronizeFileOperation(
|
|
SynchronizeFileOperation operation = new SynchronizeFileOperation(
|
|
child,
|
|
child,
|
|
child, // cheating with the remote file to get an update to server; to refactor
|
|
child, // cheating with the remote file to get an update to server; to refactor
|