android/CustomFilePickerFragment: fixup call super.goUp() instead

This commit is contained in:
SachinVin 2020-05-01 23:46:29 +05:30 committed by bunnei
parent 46a639d082
commit 01fcf63b6e

View File

@ -99,7 +99,7 @@ public class CustomFilePickerFragment extends FilePickerFragment {
if(Environment.getExternalStorageDirectory().getPath().equals(mCurrentPath.getPath())) { if(Environment.getExternalStorageDirectory().getPath().equals(mCurrentPath.getPath())) {
return; return;
} }
goToDir(getParent(mCurrentPath)); super.goUp();
} }
private static String fileExtension(@NonNull String filename) { private static String fileExtension(@NonNull String filename) {