Skip to content

Commit

Permalink
fix: [retro hunt] fix item iterator
Browse files Browse the repository at this point in the history
  • Loading branch information
Terrtia committed Jan 17, 2025
1 parent dc9a8df commit 4d5c3f0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bin/lib/objects/Items.py
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,8 @@ def get_all_items_objects(filters={}):
start_id = None
i += 1
for obj_id in all_items:
yield Item(obj_id)
if obj_id:
yield Item(obj_id)

################################################################################
################################################################################
Expand Down

0 comments on commit 4d5c3f0

Please sign in to comment.