luci-app-vnstat: Fix blank graphs for iface names with underscores
The regex used to process the iface query string argument in vnstat.htm was stripping underscores, which caused the graph not to display for interfaces with names containing underscores. This patch adds the underscore to that regex so that the interface name will be correct and the graph will be displayed. Signed-off-by: Michael Marley <michael@michaelmarley.com>
This commit is contained in:
parent
3a7d738e27
commit
c595f3095b
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ style = (style and #style > 0) and style or "s"
|
|||
--
|
||||
if iface then
|
||||
style = style:gsub("[^%w]", "")
|
||||
iface = iface:gsub("[^%w%.%-]", "")
|
||||
iface = iface:gsub("[^%w%.%-%_]", "")
|
||||
|
||||
luci.http.prepare_content("image/png")
|
||||
|
||||
|
|
Loading…
Reference in a new issue