diff options
Diffstat (limited to 'backend/api/routes.go')
| -rw-r--r-- | backend/api/routes.go | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/backend/api/routes.go b/backend/api/routes.go index d05e99a..c4a457f 100644 --- a/backend/api/routes.go +++ b/backend/api/routes.go @@ -30,11 +30,8 @@ func insertFunc(w http.ResponseWriter, r *http.Request) { password := r.FormValue("password") lang := r.FormValue("language") - // get ip - ip := getIP(r) - // insert content - hash, err := db.New(ip, content, expiry, title, password, lang) + hash, err := db.New(content, expiry, title, password, lang) if err != nil { w.WriteHeader(http.StatusBadRequest) fmt.Fprintf(w, "%s", err.Error()) |