mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-30 07:59:35 +00:00
Fixes attempt to index a nil value (field 'user_alert_store')
This commit is contained in:
parent
0050459096
commit
dafc2e7b80
1 changed files with 1 additions and 1 deletions
|
|
@ -262,7 +262,7 @@ local pages = {
|
|||
endpoint_delete = "/lua/rest/v2/delete/user/alerts.lua",
|
||||
endpoint_acknowledge = "/lua/rest/v2/acknowledge/user/alerts.lua",
|
||||
url = getPageUrl(base_url_historical_only, {page = "user"}),
|
||||
hidden = not is_system_interface or not alert_store_instances["user_alert_store"]:has_alerts(),
|
||||
hidden = not is_system_interface or not alert_store_instances["user"]:has_alerts(),
|
||||
badge_num = num_alerts_engaged_by_entity[tostring(alert_entities.user.entity_id)]
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue