🚑 Corrects typo in parental control API error message

This commit is contained in:
Franck Nijhof 2019-05-27 22:51:51 +02:00 committed by GitHub
parent 7d2df26335
commit 517ebc0251
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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