Denis V. Dedkov 9 лет назад
Родитель
Сommit
c676ccf354
1 измененных файлов с 1 добавлено и 3 удалено
  1. 1 3
      examples/noolite-web/noolite-web.go

+ 1 - 3
examples/noolite-web/noolite-web.go

@@ -80,9 +80,7 @@ func main() {
 	defer n.Close()
 
 	http.HandleFunc("/noolite/", func(w http.ResponseWriter, r *http.Request) {
-		command, channel, value, red, green, blue := parseParams(r.URL.Path[1:])
-
-		err := sendCommand(n, command, channel, value, red, green, blue)
+		err := sendCommand(n, parseParams(r.URL.Path[1:]))
 
 		if err != nil {
 			fmt.Fprintf(w, "{\"error\": %q}", err)