Skip to content

Commit

Permalink
Fix incorrect variable usage in marshal_images()
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-allan committed Aug 29, 2024
1 parent 825af04 commit 68e99e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion omeroweb/webclient/tree.py
Original file line number Diff line number Diff line change
Expand Up @@ -814,7 +814,7 @@ def marshal_images(
# images mentioned in shares that are not in the results
# because they have been deleted
if share_id is not None and image_rids and data["id"] in image_rids:
image_rids.remove(e["id"])
image_rids.remove(data["id"])
kwargs["share_id"] = share_id

images.append(_marshal_image_map(conn, data, **kwargs))
Expand Down

0 comments on commit 68e99e5

Please sign in to comment.