diff options
Diffstat (limited to 'applications')
-rw-r--r-- | applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js b/applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js index 4d4bfd0dbe..dd5bf715e4 100644 --- a/applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js +++ b/applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js @@ -60,7 +60,7 @@ return view.extend({ o.load = function(section_id) { return fs.exec('/usr/bin/vnstat', ['--dbiflist', '1']).then(L.bind(function(result) { var databaseInterfaces = []; - if (result.code == 0) { + if (result.code == 0 && result.stdout) { databaseInterfaces = result.stdout.trim().split('\n'); } |