summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2023-04-26 07:04:25 +0200
committerxengineering <me@xengineering.eu>2023-04-28 10:44:29 +0200
commit12daf84f2df56b639f7f37a7894612d5355a7c37 (patch)
tree50b1883f0195e638ee7617e798cb7895bd235e86
parentf456fa1a6d3a6633af3b420f1eddbc1a96ffcdf1 (diff)
downloadceres-12daf84f2df56b639f7f37a7894612d5355a7c37.tar
ceres-12daf84f2df56b639f7f37a7894612d5355a7c37.tar.zst
ceres-12daf84f2df56b639f7f37a7894612d5355a7c37.zip
Fix empty title regression
Empty title should be avoided because the recipe otherwise just disappears.
-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