Fixes hardcoded URL

This commit is contained in:
Simone Mainardi 2021-07-02 15:12:03 +02:00
parent feb65be1ca
commit 96c5e2025d
2 changed files with 1 additions and 3 deletions

View file

@ -555,8 +555,6 @@ function alert_store:acknowledge()
-- Prepare the final query
local q = string.format("UPDATE `%s` SET alert_status = %u WHERE %s", self._table_name, alert_consts.alert_status.acknowledged.alert_status_id, where_clause)
tprint(q)
local res = interface.alert_store_query(q)
return res and table.len(res) == 0
end