Fixes white navbar showing up at first launch

This commit is contained in:
MatteoBiscosi 2021-06-24 11:19:30 +02:00
parent 0fd834ccd8
commit b7709b13f4
2 changed files with 3 additions and 2 deletions

View file

@ -583,8 +583,9 @@ function page_utils.print_menubar()
end
local navbar_style = _POST["toggle_theme"] or ntop.getPref("ntopng.user." .. _SESSION["user"] .. ".theme")
tprint(navbar_style)
if ((navbar_style == nil) or (navbar_style == "white")) then
if ((navbar_style == nil) or (navbar_style == "white") or (navbar_style == "")) then
navbar_style = "default"
end