mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 15:39:33 +00:00
Fixes nil table error
This commit is contained in:
parent
7ce3e53a12
commit
885cc595ed
1 changed files with 1 additions and 1 deletions
|
|
@ -1994,7 +1994,7 @@ end
|
|||
function user_scripts.getDefaultFilters(ifid, subdir, script_key)
|
||||
|
||||
local script_type = user_scripts.getScriptType(subdir)
|
||||
local script = user_scripts.loadModule(ifid, script_type, subdir, script_key)
|
||||
local script = user_scripts.loadModule(ifid, script_type, subdir, script_key) or {}
|
||||
local filters = {}
|
||||
filters["current_filters"] = {}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue