ioneday / ImageSelector

Photo picker library for Android. Support single choice、multi-choice、cropping image and preview image.
408 stars 126 forks source link

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

Open mmz211 opened 7 years ago

mmz211 commented 7 years ago

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 imageFolders) change if (folder.getName().equals(folderFile.getName())) into if (folder.getPath().equals(folderFile.getAbsolutePath()))