|
@@ -194,7 +194,6 @@ public class FileDataStorageManager {
|
|
|
cv.put(ProviderTableMeta.FILE_REMOTE_ID, file.getRemoteId());
|
|
|
cv.put(ProviderTableMeta.FILE_UPDATE_THUMBNAIL, file.needsUpdateThumbnail());
|
|
|
cv.put(ProviderTableMeta.FILE_IS_DOWNLOADING, file.isDownloading());
|
|
|
- cv.put(ProviderTableMeta.FILE_IS_UPLOADING, file.isUploading());
|
|
|
|
|
|
boolean sameRemotePath = fileExists(file.getRemotePath());
|
|
|
if (sameRemotePath ||
|
|
@@ -305,7 +304,6 @@ public class FileDataStorageManager {
|
|
|
cv.put(ProviderTableMeta.FILE_REMOTE_ID, file.getRemoteId());
|
|
|
cv.put(ProviderTableMeta.FILE_UPDATE_THUMBNAIL, file.needsUpdateThumbnail());
|
|
|
cv.put(ProviderTableMeta.FILE_IS_DOWNLOADING, file.isDownloading());
|
|
|
- cv.put(ProviderTableMeta.FILE_IS_UPLOADING, file.isUploading());
|
|
|
|
|
|
boolean existsByPath = fileExists(file.getRemotePath());
|
|
|
if (existsByPath || fileExists(file.getFileId())) {
|
|
@@ -883,8 +881,6 @@ public class FileDataStorageManager {
|
|
|
c.getColumnIndex(ProviderTableMeta.FILE_UPDATE_THUMBNAIL)) == 1 ? true : false);
|
|
|
file.setDownloading(c.getInt(
|
|
|
c.getColumnIndex(ProviderTableMeta.FILE_IS_DOWNLOADING)) == 1 ? true : false);
|
|
|
- file.setUploading(c.getInt(
|
|
|
- c.getColumnIndex(ProviderTableMeta.FILE_IS_UPLOADING)) == 1 ? true : false);
|
|
|
|
|
|
}
|
|
|
return file;
|
|
@@ -1271,10 +1267,6 @@ public class FileDataStorageManager {
|
|
|
ProviderTableMeta.FILE_IS_DOWNLOADING,
|
|
|
file.isDownloading() ? 1 : 0
|
|
|
);
|
|
|
- cv.put(
|
|
|
- ProviderTableMeta.FILE_IS_UPLOADING,
|
|
|
- file.isUploading() ? 1 : 0
|
|
|
- );
|
|
|
|
|
|
boolean existsByPath = fileExists(file.getRemotePath());
|
|
|
if (existsByPath || fileExists(file.getFileId())) {
|