mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-30 16:09:32 +00:00
Fixes failure when opening (sometimes) the interface timeseries page
This commit is contained in:
parent
000524947b
commit
3d1eac8b1b
1 changed files with 1 additions and 1 deletions
|
|
@ -827,7 +827,7 @@ function driver:listSeries(schema, tags_filter, wildcard_tags, start_time, not_p
|
|||
local fpath = base .. "/" .. f
|
||||
if ((v ~= nil) and (#v == 1)) then
|
||||
local last_update = ntop.rrd_lastupdate(fpath)
|
||||
if last_update ~= nil and last_update >= start_time then
|
||||
if last_update ~= nil and start_time ~= nil and last_update >= start_time then
|
||||
local value = v[1]
|
||||
local toadd = false
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue