mirror of
https://github.com/nextcloud/android.git
synced 2024-11-27 08:58:30 +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 {
|
} else {
|
||||||
throw new SecurityException();
|
throw new SecurityException();
|
||||||
}
|
}
|
||||||
if (data == null) {
|
//if (data == null) {
|
||||||
mRemoteCacheData.add(filePath);
|
mRemoteCacheData.add(filePath);
|
||||||
CopyTmpFileAsyncTask copyTask = new CopyTmpFileAsyncTask(this);
|
CopyTmpFileAsyncTask copyTask = new CopyTmpFileAsyncTask(this);
|
||||||
Object[] params = {uri, filePath, mRemoteCacheData.size() - 1,
|
Object[] params = {uri, filePath, mRemoteCacheData.size() - 1,
|
||||||
|
@ -595,7 +595,10 @@ public class Uploader extends FileActivity
|
||||||
mNumCacheFile++;
|
mNumCacheFile++;
|
||||||
showWaitingCopyDialog();
|
showWaitingCopyDialog();
|
||||||
copyTask.execute(params);
|
copyTask.execute(params);
|
||||||
}
|
|
||||||
|
//} else {
|
||||||
|
// TODO request to FileUploader with data as source file, resulting in lazy temporary copy
|
||||||
|
//}
|
||||||
} else {
|
} else {
|
||||||
throw new SecurityException();
|
throw new SecurityException();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue