diff --git a/cmd/tpapi/httpTemplates.go b/cmd/tpapi/httpTemplates.go index 19bb74c..f817f45 100644 --- a/cmd/tpapi/httpTemplates.go +++ b/cmd/tpapi/httpTemplates.go @@ -216,14 +216,14 @@ func tmpltTPlinkPost(w http.ResponseWriter, r *http.Request) { tmpltError(w, http.StatusInternalServerError, "Unable to find host key annotation.") return } - if _, validKey = alert.Annotations["id"]; !validKey { + if _, validKey = alert.Annotations["deviceID"]; !validKey { log.Printf("[DEBUG] Unable to find device id key annotation.") tmpltError(w, http.StatusInternalServerError, "Unable to find device id key annotation.") return } // convert annotation string to integer - id, err := strconv.Atoi(alert.Annotations["id"]) + id, err := strconv.Atoi(alert.Annotations["deviceID"]) if err != nil { log.Printf("[DEBUG] Unable to convert string to integer for provided device id: %v\n", err) tmpltError(w, http.StatusInternalServerError, fmt.Sprintf("Unable to convert string to integer for provided device id: %v\n", err))