diff --git a/src/apps/common/seed.py b/src/apps/common/seed.py index 6b630fdb..02898590 100644 --- a/src/apps/common/seed.py +++ b/src/apps/common/seed.py @@ -12,7 +12,8 @@ _cached_root_node = None async def get_node(session_id: int, path: list): - node = await get_root_node(session_id) + root = await get_root_node(session_id) + node = root.clone() node.derive_path(path) return node