mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 23:49:33 +00:00
Fixes a WARNING: ntop_lua_http_print(): Lua type 2 is not handled
An attempt to resolve the name of a nil value was causing the error.
This commit is contained in:
parent
aa592508d3
commit
9e5c843abe
1 changed files with 1 additions and 1 deletions
|
|
@ -429,7 +429,7 @@ var populatePeersPerHostByApplication = function(host, proto_id){
|
|||
// this is the entry point for the navigation that starts at hosts
|
||||
var populateHostTopAppsTable = function(host){
|
||||
emptyAppsBreadCrumb();
|
||||
$("#bc-apps").append('<li>Protocols spoken by ]] print(ntop.getResolvedAddress(host)) print [[</li>');
|
||||
$("#bc-apps").append('<li>Protocols spoken by ' + host +'</li>');
|
||||
|
||||
hideAll("app-talkers");
|
||||
hideAll("peers-by-app");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue