Browse Source

Update helpers.go

Volodymyr Tkach 2 years ago
parent
commit
80a6a2671e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      utils/http/helpers/helpers.go

+ 1 - 1
utils/http/helpers/helpers.go

@@ -217,7 +217,7 @@ func SetLanguageCookie(w http.ResponseWriter, r *http.Request) error {
 	if c, err := r.Cookie("lang"); err == nil {
 		clang = c.Value
 	}
-	lang := r.Form.Get("lang")
+	lang := r.FormValue("lang")
 	if lang != "" && lang != clang {
 		http.SetCookie(w, &http.Cookie{
 			Expires:  time.Now().Add(365 * 24 * time.Hour),