changes name of submitted device id
This commit is contained in:
parent
d307a6a2a5
commit
bfa88364af
@ -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))
|
||||
|
Loading…
x
Reference in New Issue
Block a user