Revert "Fixed List Mode setting itself to thumbnails. Now uses the default."

This reverts commit f261e8c10c
This commit is contained in:
Harmonic 2020-04-21 11:36:17 -04:00
parent f261e8c10c
commit 5617e4164d

View File

@ -16,7 +16,7 @@ public class HabboNavigatorPersonalDisplayMode {
}
public HabboNavigatorPersonalDisplayMode(ResultSet set) throws SQLException {
this.listMode = set.getBoolean("list_type") ? ListMode.THUMBNAILS : ListMode.LIST;
this.listMode = set.getString("list_type").equals("thumbnails") ? ListMode.THUMBNAILS : ListMode.LIST;
this.displayMode = DisplayMode.valueOf(set.getString("display").toUpperCase());
}
}