diff --git a/package/secubox/luci-app-hexojs/htdocs/luci-static/resources/view/hexojs/overview.js b/package/secubox/luci-app-hexojs/htdocs/luci-static/resources/view/hexojs/overview.js index 016ea7b2..0515fa52 100644 --- a/package/secubox/luci-app-hexojs/htdocs/luci-static/resources/view/hexojs/overview.js +++ b/package/secubox/luci-app-hexojs/htdocs/luci-static/resources/view/hexojs/overview.js @@ -20,10 +20,10 @@ return view.extend({ api.listBackups() ]).then(function(results) { return { - instances: results[0].instances || [], + instances: results[0] || [], status: results[1], stats: results[2], - backups: results[3].backups || [] + backups: results[3] || [] }; }); },