Joaquín Reñé
2022-03-10 d535429a2f18c82de7716076a8065f6ad95f0483
securis/src/main/java/net/curisit/securis/services/PackResource.java
....@@ -157,7 +157,7 @@
157157 @Produces({ MediaType.APPLICATION_JSON })
158158 public Response get(@PathParam("packId") Integer packId, @Context BasicSecurityContext bsc) {
159159 LOG.info("Getting pack data for id: {}: ", packId);
160
- if (packId == null || "".equals(packId)) {
160
+ if (packId == null || "".equals(Integer.toString(packId))) {
161161 LOG.error("Pack ID is mandatory");
162162 return Response.status(Status.NOT_FOUND).build();
163163 }