averbraeck / housinggame-admin

Administrator app for the Housing Game
https://housing-game.tbm.tudelft.nl
BSD 3-Clause "New" or "Revised" License
0 stars 1 forks source link

Wrong retrieval of round record in deletion of playerround #10

Closed averbraeck closed 1 year ago

averbraeck commented 1 year ago

The following statement contains the wrong record nr:

  dslContext.selectFrom(Tables.ROUND.where(Tables.ROUND.ID.eq(groupRound.getGroupId()))).fetchOne();

The getGroupId() should be getRoundId().

averbraeck commented 1 year ago

Tested the deletion of a PlayerRound and it now works.