Skip to content

Commit

Permalink
Fix condition
Browse files Browse the repository at this point in the history
  • Loading branch information
dersmon committed Nov 22, 2024
1 parent 9385551 commit 7ba247a
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.isDeleted()) {
if (arachneId.isDeleted()) {
return new ImageProperties(imageName, -1, -1, watermark, HttpStatus.GONE);
}

Expand Down

0 comments on commit 7ba247a

Please sign in to comment.