mirror of
https://github.com/nextcloud/android.git
synced 2024-11-23 13:45:35 +03:00
Rewired code path to upload files sent from other apps
This commit is contained in:
parent
def9478d44
commit
eae56238f9
1 changed files with 5 additions and 2 deletions
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue