From f624c71a26a522b2ea387a9f7e9f6ec84341b704 Mon Sep 17 00:00:00 2001 From: xengineering Date: Wed, 26 Apr 2023 07:05:02 +0200 Subject: Fix add_recipes with default JSON --- handler.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/handler.go b/handler.go index 32a9d4d..3064469 100644 --- a/handler.go +++ b/handler.go @@ -170,8 +170,10 @@ func addRecipesGet(w http.ResponseWriter, r *http.Request) { return } + rec, _ := json.MarshalIndent(recipe{}, "", " ") + textpath := filepath.Join(config.Data, "recipes", newIdStr, "text") - err = os.WriteFile(textpath, make([]byte, 0), 0644) + err = os.WriteFile(textpath, rec, 0644) if err != nil { http.Error(w, "Could not create new recipe!", 500) return -- cgit v1.2.3-70-g09d2