From 12daf84f2df56b639f7f37a7894612d5355a7c37 Mon Sep 17 00:00:00 2001 From: xengineering Date: Wed, 26 Apr 2023 07:04:25 +0200 Subject: Fix empty title regression Empty title should be avoided because the recipe otherwise just disappears. --- recipe.go | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/recipe.go b/recipe.go index a1a27e9..b28aebb 100644 --- a/recipe.go +++ b/recipe.go @@ -45,6 +45,10 @@ func getRecipe(id string) (recipe, error) { return r, err } + if r.Title == "" { + r.Title = "recipe without title" + } + return r, nil } @@ -85,6 +89,10 @@ func getRecipeList() recipeList { continue } + if r.Title == "" { + r.Title = "recipe without title" + } + recipes = append(recipes, struct { Id string Title string -- cgit v1.2.3-70-g09d2