mirror of
https://github.com/nextcloud/talk-android.git
synced 2024-11-26 23:25:20 +03:00
properly sort by name
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
This commit is contained in:
parent
85b2cea618
commit
d785d3aa21
1 changed files with 5 additions and 3 deletions
|
@ -24,6 +24,8 @@
|
|||
|
||||
package third_parties.daveKoeller;
|
||||
|
||||
import com.nextcloud.talk.components.filebrowser.adapters.items.BrowserFileItem;
|
||||
|
||||
import java.io.File;
|
||||
import java.io.Serializable;
|
||||
import java.math.BigInteger;
|
||||
|
@ -85,9 +87,9 @@ public class AlphanumComparator<T> implements Comparator<T>, Serializable {
|
|||
return chunk.toString();
|
||||
}
|
||||
|
||||
public int compare(File f1, File f2) {
|
||||
String s1 = f1.getPath();
|
||||
String s2 = f2.getPath();
|
||||
public int compare(BrowserFileItem f1, BrowserFileItem f2) {
|
||||
String s1 = f1.getModel().path;
|
||||
String s2 = f2.getModel().path;
|
||||
|
||||
return compare(s1, s2);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue