Skip to content

Commit

Permalink
hotfix setLong()
Browse files Browse the repository at this point in the history
  • Loading branch information
antonin77 committed Dec 24, 2024
1 parent bc9827b commit dbea848
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/usf/inspect/server/dao/RequestDao.java
Original file line number Diff line number Diff line change
Expand Up @@ -275,8 +275,8 @@ private void saveMailRequestStages(List<Session> sessions) {
ps.setString(1, stage.getName());
ps.setTimestamp(2, fromNullableInstant(stage.getStart()));
ps.setTimestamp(3, fromNullableInstant(stage.getEnd()));
ps.setInt(3, stage.getOrder());
ps.setLong(4, stage.getId());
ps.setInt(4, stage.getOrder());
ps.setLong(5, stage.getId());
if(stage.getException() != null) {
stage.getException().setIdRequest(stage.getId());
stage.getException().setOrder(stage.getOrder());
Expand Down

0 comments on commit dbea848

Please sign in to comment.