Skip to content

Commit

Permalink
Fix latest update route
Browse files Browse the repository at this point in the history
  • Loading branch information
henkelmax committed Jun 21, 2022
1 parent 10db19a commit dceab32
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public ResponseEntity<?> modUpdates(@PathVariable("modID") String modID) {
versions.put(update.getGameVersion(), update);
}

return new ResponseEntity<>(versions, HttpStatus.OK);
return new ResponseEntity<>(versions.values(), HttpStatus.OK);
}

}

0 comments on commit dceab32

Please sign in to comment.