Use luci.fs.access instead of luci.fs.isfile where applicable
[project/luci.git] / applications / luci-qos / luasrc / controller / qos.lua
index 0222806..970dd3d 100644 (file)
@@ -14,7 +14,7 @@ $Id$
 module("luci.controller.qos", package.seeall)
 
 function index()
-       if not luci.fs.isfile("/etc/config/qos") then
+       if not luci.fs.access("/etc/config/qos") then
                return
        end
        
@@ -23,7 +23,7 @@ function index()
        page.dependent = true
        
        
-       local page = entry({"mini", "network", "qos"}, cbi("qos/qosmini"), "QoS")
+       local page = entry({"mini", "network", "qos"}, cbi("qos/qosmini", {autoapply=true}), "QoS")
        page.i18n = "qos"
        page.dependent = true
 end
\ No newline at end of file