Skip to content

Commit

Permalink
Use correct getter
Browse files Browse the repository at this point in the history
-__-
  • Loading branch information
dersmon committed Nov 22, 2024
1 parent 87ad661 commit 87ebb28
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ public ImageProperties getImageProperties(final long entityId, final int request
return new ImageProperties(imageName, -1, -1, watermark, HttpStatus.NOT_FOUND);
}

if (arachneId.getDeleted() != 0) {
if (arachneId.isDeleted() != 0) {
return new ImageProperties(imageName, -1, -1, watermark, HttpStatus.GONE);
}

Expand Down

0 comments on commit 87ebb28

Please sign in to comment.