diff --git a/app/core/session.py b/app/core/session.py index 762f350..dbc8159 100644 --- a/app/core/session.py +++ b/app/core/session.py @@ -30,8 +30,8 @@ async def current_session_id(self): async def start_recipe(self, id: str): recipe = await recipes.recipe_db.get(id) - if not recipe: - raise ValueError(f"Recipe {id} not found.") + # if not recipe: + # raise ValueError(f"Recipe {id} not found.") session_id = str(int(time.time())) async with ctx.redis.pipeline() as pipe: pipe.set(RECIPE_ID, id)