From 32d10ef7c6b6e2e47be5817137f1eb09af738aaf Mon Sep 17 00:00:00 2001 From: Sasha Koshka Date: Tue, 10 Dec 2024 22:07:30 -0500 Subject: [PATCH] providers/http: Remove unnecessary FIXME --- providers/http/http.go | 1 - 1 file changed, 1 deletion(-) diff --git a/providers/http/http.go b/providers/http/http.go index 816d166..44ee2cd 100644 --- a/providers/http/http.go +++ b/providers/http/http.go @@ -53,7 +53,6 @@ func funcRedirect (status int, pat string) (string, error) { } func funcParseForm (req *http.Request) url.Values { - // FIXME there is already a parse form method lol this can be removed err := req.ParseForm() if err != nil { return nil } return req.Form