summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--handler.go4
1 files changed, 3 insertions, 1 deletions
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