Fix
This commit is contained in:
parent
ff8773010b
commit
b64c09dbf2
1 changed files with 1 additions and 1 deletions
|
@ -1151,7 +1151,7 @@ public class AudioVideoNotesPlugin extends OsmandPlugin {
|
||||||
@Override
|
@Override
|
||||||
public int compare(Recording object1, Recording object2) {
|
public int compare(Recording object1, Recording object2) {
|
||||||
long l1 = object1.file.lastModified();
|
long l1 = object1.file.lastModified();
|
||||||
long l2 = object1.file.lastModified();
|
long l2 = object2.file.lastModified();
|
||||||
return l1 < l2 ? 1 : -1;
|
return l1 < l2 ? 1 : -1;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue