|
From: Brendan M. <mcm...@ux...> - 2003-04-18 22:42:13
|
There was a bug in AlbumWithIncludes:
String sortType = (String)JigsPrefs.get("album_sort_type");
if (sortType.trim().equalsIgnoreCase("date")) {
Collections.sort(pics, getJigsDateSorter());
} else {
Collections.sort(pics);
}
throws an Exception, because sortType is null by default.
This bug was fixed by adding a check to see if sortType != null.
- Brendan
|