fixes after rebase

This commit is contained in:
AndyScherzinger 2018-07-03 18:50:36 +02:00
parent a5345705c6
commit f7402a2e51
No known key found for this signature in database
GPG key ID: 6CADC7E3523C308B

View file

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