Browse Source

fixes after rebase

AndyScherzinger 6 years ago
parent
commit
f7402a2e51

+ 1 - 2
src/main/java/com/owncloud/android/ui/adapter/OCFileListAdapter.java

@@ -632,9 +632,8 @@ public class OCFileListAdapter extends RecyclerView.Adapter<RecyclerView.ViewHol
                 // also sync folder content
                 // also sync folder content
                 if (ocFile.isFolder()) {
                 if (ocFile.isFolder()) {
                     long currentSyncTime = System.currentTimeMillis();
                     long currentSyncTime = System.currentTimeMillis();
-                    boolean shareSupported = AccountUtils.getServerVersion(mAccount).isSharedSupported();
                     RemoteOperation refreshFolderOperation = new RefreshFolderOperation(ocFile, currentSyncTime, false,
                     RemoteOperation refreshFolderOperation = new RefreshFolderOperation(ocFile, currentSyncTime, false,
-                            shareSupported, false, mStorageManager, mAccount, mContext);
+                            false, mStorageManager, mAccount, mContext);
                     refreshFolderOperation.execute(mAccount, mContext);
                     refreshFolderOperation.execute(mAccount, mContext);
                 }
                 }