ImageSelector icon indicating copy to clipboard operation
ImageSelector copied to clipboard

Bug Report: Folders list contains 2 folders with the same name

Open mmz211 opened this issue 7 years ago • 0 comments

When 2 folders with the same exists in the phone, the 2 folders would be viewed as the same one. because it compares using folder name instead of folder full path.

Modify this method LocalMediaLoader.java private LocalMediaFolder getImageFolder(String path, List<LocalMediaFolder> imageFolders) change if (folder.getName().equals(folderFile.getName())) into if (folder.getPath().equals(folderFile.getAbsolutePath()))

mmz211 avatar Sep 08 '17 09:09 mmz211