providers/http: Remove unnecessary FIXME

This commit is contained in:
Sasha Koshka 2024-12-10 22:07:30 -05:00
parent 79ac18c8c3
commit 32d10ef7c6

View File

@ -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