diff options
author | xengineering <me@xengineering.eu> | 2023-04-26 07:04:25 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2023-04-28 10:44:29 +0200 |
commit | 12daf84f2df56b639f7f37a7894612d5355a7c37 (patch) | |
tree | 50b1883f0195e638ee7617e798cb7895bd235e86 | |
parent | f456fa1a6d3a6633af3b420f1eddbc1a96ffcdf1 (diff) | |
download | ceres-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.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 |