mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-24 14:24:54 +00:00
Merge pull request #3596 from Sonicadvance1/fix_android_crash
[Android] Fix crash when we don't have access to a folder.
This commit is contained in:
commit
6513062144
1 changed files with 17 additions and 12 deletions
|
@ -159,20 +159,25 @@ public final class FileAdapter extends RecyclerView.Adapter<FileViewHolder> impl
|
|||
private ArrayList<FileListItem> generateFileList(File directory)
|
||||
{
|
||||
File[] children = directory.listFiles();
|
||||
ArrayList<FileListItem> fileList = new ArrayList<FileListItem>(children.length);
|
||||
|
||||
for (File child : children)
|
||||
{
|
||||
if (!child.isHidden())
|
||||
{
|
||||
FileListItem item = new FileListItem(child);
|
||||
fileList.add(item);
|
||||
}
|
||||
}
|
||||
|
||||
mPath = directory.getAbsolutePath();
|
||||
ArrayList<FileListItem> fileList = new ArrayList<FileListItem>(0);
|
||||
|
||||
Collections.sort(fileList);
|
||||
if (children != null)
|
||||
{
|
||||
|
||||
fileList = new ArrayList<FileListItem>(children.length);
|
||||
|
||||
for (File child : children)
|
||||
{
|
||||
if (!child.isHidden())
|
||||
{
|
||||
FileListItem item = new FileListItem(child);
|
||||
fileList.add(item);
|
||||
}
|
||||
}
|
||||
|
||||
Collections.sort(fileList);
|
||||
}
|
||||
return fileList;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue