Skip to content

Commit

Permalink
fix: [retro hunt] fix retro hunt item restart
Browse files Browse the repository at this point in the history
  • Loading branch information
Terrtia committed Feb 6, 2025
1 parent 0d45558 commit 98652a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/lib/objects/Items.py
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ def get_all_items_objects(filters={}):
sources = sorted(sources)
if filters.get('start'):
if filters['start']['type'] == 'item':
_, start_id = filters['start'].split(':', 1)
start_id = filters['start']['id']
item = Item(start_id)
if not item.exists():
start_id = None
Expand Down

0 comments on commit 98652a1

Please sign in to comment.