Skip to content

Commit

Permalink
Merge pull request #326 from softwareconstruction240/fix-unreturned-s…
Browse files Browse the repository at this point in the history
…ubmissions

fixed unreturned submissions
  • Loading branch information
pawlh authored Apr 24, 2024
2 parents c8b12d9 + 642d50c commit 8bf5edc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ public static Submission getMostRecentSubmission(String netId, Phase phase) thro
int count = countString == null ? -1 : Integer.parseInt(countString); // if they don't give a count, set it to -1, which gets all latest submissions
Collection<Submission> submissions = null;
try {
DaoService.getSubmissionDao().getAllLatestSubmissions(count);
submissions = DaoService.getSubmissionDao().getAllLatestSubmissions(count);
} catch (DataAccessException e) {
LOGGER.error("Error getting latest submissions", e);
halt(500);
Expand Down

0 comments on commit 8bf5edc

Please sign in to comment.