mirror of
https://github.com/ail-project/ail-framework.git
synced 2025-02-13 12:56:20 +00:00
fix: [retro hunt] fix retro hunt item restart
This commit is contained in:
parent
0d45558e33
commit
98652a1013
1 changed files with 1 additions and 1 deletions
|
@ -457,7 +457,7 @@ def get_all_items_objects(filters={}):
|
||||||
sources = sorted(sources)
|
sources = sorted(sources)
|
||||||
if filters.get('start'):
|
if filters.get('start'):
|
||||||
if filters['start']['type'] == 'item':
|
if filters['start']['type'] == 'item':
|
||||||
_, start_id = filters['start'].split(':', 1)
|
start_id = filters['start']['id']
|
||||||
item = Item(start_id)
|
item = Item(start_id)
|
||||||
if not item.exists():
|
if not item.exists():
|
||||||
start_id = None
|
start_id = None
|
||||||
|
|
Loading…
Add table
Reference in a new issue