- change order of display

This commit is contained in:
Andy Rozman 2020-01-02 23:56:54 +01:00
parent d58075a93c
commit db117bf736

View file

@ -137,6 +137,6 @@ public class PodHistory implements DbObjectBase, Comparable<PodHistory> {
@Override
public int compareTo(PodHistory otherOne) {
return (int) (this.date - otherOne.date);
return (int) (otherOne.date - this.date);
}
}