changes name of submitted device id

This commit is contained in:
Hyatt 2022-01-10 13:19:22 -06:00
parent d307a6a2a5
commit bfa88364af
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

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