ajanata / PretendYoureXyzzy

A web clone of the card game Cards Against Humanity.
https://pretendyoure.xyz/zy
BSD 2-Clause "Simplified" License
1.23k stars 397 forks source link

Fix cardsets.jsp #117

Closed ajanata closed 9 years ago

ajanata commented 10 years ago
org.apache.jasper.JasperException: An exception occurred processing JSP page /cardsets.jsp at line 154

151:   }
152:   
153:   @SuppressWarnings("unchecked")
154:   List<PyxCardSet> cardSets = hibernateSession.createQuery("from CardSet order by weight, id")
155:       .setReadOnly(true).list();
156:   
157:   @SuppressWarnings("unchecked")

org.hibernate.hql.ast.QuerySyntaxException: CardSet is not mapped [from CardSet order by weight, id]

Didn't change the name here when I refactored stuff.

ajanata commented 9 years ago

This was fixed in 2b84c84.