ImageSelector
ImageSelector copied to clipboard
Bug Report: Folders list contains 2 folders with the same name
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()))