mirror of
https://git.krews.org/morningstar/Arcturus-Community.git
synced 2025-01-18 15:36:27 +01:00
Fixed List Mode setting itself to thumbnails. Now uses the default.
This commit is contained in:
parent
4056e48643
commit
f261e8c10c
@ -16,7 +16,7 @@ public class HabboNavigatorPersonalDisplayMode {
|
||||
}
|
||||
|
||||
public HabboNavigatorPersonalDisplayMode(ResultSet set) throws SQLException {
|
||||
this.listMode = set.getString("list_type").equals("thumbnails") ? ListMode.THUMBNAILS : ListMode.LIST;
|
||||
this.listMode = set.getBoolean("list_type") ? ListMode.THUMBNAILS : ListMode.LIST;
|
||||
this.displayMode = DisplayMode.valueOf(set.getString("display").toUpperCase());
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user