diff options
Diffstat (limited to 'handler.go')
-rw-r--r-- | handler.go | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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 |