private boolean mRemoteFolderChanged;
/** 'True' means that Etag will be ignored */
- private boolean mIgnoreTag;
+ private boolean mIgnoreETag;
/**
long currentSyncTime,
boolean syncFullAccount,
boolean isShareSupported,
- boolean ignoreTag,
+ boolean ignoreETag,
FileDataStorageManager dataStorageManager,
Account account,
Context context ) {
mContext = context;
mForgottenLocalFiles = new HashMap<String, String>();
mRemoteFolderChanged = false;
- mIgnoreTag = ignoreTag;
+ mIgnoreETag = ignoreETag;
}
if (result.isSuccess()){
OCFile remoteFolder = FileStorageUtils.fillOCFile((RemoteFile) result.getData().get(0));
- if (!mIgnoreTag) {
+ if (!mIgnoreETag) {
// check if remote and local folder are different
mRemoteFolderChanged = !(remoteFolder.getEtag().equalsIgnoreCase(mLocalFolder.getEtag()));
}