From 98652a1013221eed34230cb9357117da82dbab60 Mon Sep 17 00:00:00 2001 From: terrtia Date: Thu, 6 Feb 2025 11:19:12 +0100 Subject: [PATCH] fix: [retro hunt] fix retro hunt item restart --- bin/lib/objects/Items.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/lib/objects/Items.py b/bin/lib/objects/Items.py index 510104d9..05d76a16 100755 --- a/bin/lib/objects/Items.py +++ b/bin/lib/objects/Items.py @@ -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