Rewired code path to upload files sent from other apps

This commit is contained in:
David A. Velasco 2016-03-22 12:22:19 +01:00
parent def9478d44
commit eae56238f9

View file

@ -587,7 +587,7 @@ public class Uploader extends FileActivity
} else {
throw new SecurityException();
}
if (data == null) {
//if (data == null) {
mRemoteCacheData.add(filePath);
CopyTmpFileAsyncTask copyTask = new CopyTmpFileAsyncTask(this);
Object[] params = {uri, filePath, mRemoteCacheData.size() - 1,
@ -595,7 +595,10 @@ public class Uploader extends FileActivity
mNumCacheFile++;
showWaitingCopyDialog();
copyTask.execute(params);
}
//} else {
// TODO request to FileUploader with data as source file, resulting in lazy temporary copy
//}
} else {
throw new SecurityException();
}