diff options
Diffstat (limited to 'recipe.go')
-rw-r--r-- | recipe.go | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -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 |