Skip to content

Commit

Permalink
Add missing slash (#2095)
Browse files Browse the repository at this point in the history
Fixes #2094
  • Loading branch information
1-alex98 committed Jan 4, 2021
1 parent 98db90d commit 1baf31a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ public void deleteModVersionReview(String id) {

@Override
public Optional<Game> findReplayById(int id) {
return Optional.ofNullable(getOne(REPLAY_ENDPOINT + id, Game.class, java.util.Map.of(INCLUDE, REPLAY_INCLUDES)));
return Optional.ofNullable(getOne(REPLAY_ENDPOINT + "/"+ id, Game.class, java.util.Map.of(INCLUDE, REPLAY_INCLUDES)));
}

@Override
Expand Down

0 comments on commit 1baf31a

Please sign in to comment.