mirror of
https://github.com/nextcloud/android.git
synced 2024-11-24 06:05:42 +03:00
revert filtering out files in the external file upload view
This commit is contained in:
parent
68849c7305
commit
53a0da7021
1 changed files with 3 additions and 5 deletions
|
@ -408,11 +408,9 @@ public class ReceiveExternalFilesActivity extends FileActivity
|
|||
|
||||
List<HashMap<String, Object>> data = new LinkedList<>();
|
||||
for (OCFile f : files) {
|
||||
if (f.isFolder()) {
|
||||
HashMap<String, Object> h = new HashMap<>();
|
||||
h.put("dirname", f);
|
||||
data.add(h);
|
||||
}
|
||||
HashMap<String, Object> h = new HashMap<>();
|
||||
h.put("dirname", f);
|
||||
data.add(h);
|
||||
}
|
||||
|
||||
UploaderAdapter sa = new UploaderAdapter(this,
|
||||
|
|
Loading…
Reference in a new issue