From 517ebc0251d6bfe43b7b4d31c7c4e7e91ea928fa Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Mon, 27 May 2019 22:51:51 +0200 Subject: [PATCH] :ambulance: Corrects typo in parental control API error message --- control.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/control.go b/control.go index 35214d82..b6ca8424 100644 --- a/control.go +++ b/control.go @@ -871,7 +871,7 @@ func handleParentalEnable(w http.ResponseWriter, r *http.Request) { sensitivity, ok := parameters["sensitivity"] if !ok { - http.Error(w, "URL parameter was not specified", 400) + http.Error(w, "Sensitivity parameter was not specified", 400) return }