summaryrefslogtreecommitdiff
path: root/recipe.go
diff options
context:
space:
mode:
Diffstat (limited to 'recipe.go')
-rw-r--r--recipe.go8
1 files changed, 8 insertions, 0 deletions
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