Skip to content

Commit

Permalink
actually use the staff UUID
Browse files Browse the repository at this point in the history
  • Loading branch information
svenwiltink committed Sep 6, 2019
1 parent 79b1ea8 commit a05c4c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/modreq/repository/TicketRepository.java
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ public void updateTicket(Ticket t) throws SQLException {

prep.setString(1, t.getStatus().getStatusString());
prep.setString(2, t.getStaff());
prep.setString(3, t.getStaffUUID() == null ? null : t.getSubmitterUUID().toString());
prep.setString(3, t.getStaffUUID() == null ? null : t.getStaffUUID().toString());
prep.setInt(4, t.getId());
prep.execute();

Expand Down

0 comments on commit a05c4c4

Please sign in to comment.