Merge pull request #1684 from dibdot/adblock
luci-app-adblock: fix function calls
This commit is contained in:
commit
d01ddb2928
4 changed files with 3 additions and 4 deletions
|
@ -3,7 +3,6 @@
|
|||
|
||||
module("luci.controller.adblock", package.seeall)
|
||||
|
||||
local fs = require("nixio.fs")
|
||||
local util = require("luci.util")
|
||||
local templ = require("luci.template")
|
||||
local i18n = require("luci.i18n")
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
local fs = require("nixio.fs")
|
||||
local util = require("luci.util")
|
||||
local uci = require("uci")
|
||||
local adbinput = uci.get("adblock", "blacklist", "adb_src" or "/etc/adblock/adblock.blacklist")
|
||||
local adbinput = uci:get("adblock", "blacklist", "adb_src") or "/etc/adblock/adblock.blacklist"
|
||||
|
||||
if not nixio.fs.access(adbinput) then
|
||||
m = SimpleForm("error", nil,
|
||||
|
|
|
@ -7,7 +7,7 @@ local sys = require("luci.sys")
|
|||
local util = require("luci.util")
|
||||
local dump = util.ubus("network.interface", "dump", {})
|
||||
local json = require("luci.jsonc")
|
||||
local adbinput = uci.get("adblock", "global", "adb_rtfile") or "/tmp/adb_runtime.json"
|
||||
local adbinput = uci:get("adblock", "global", "adb_rtfile") or "/tmp/adb_runtime.json"
|
||||
|
||||
if not uci:get("adblock", "extra") then
|
||||
m = SimpleForm("", nil, translate("Please update your adblock config file to use this package.<br />")
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
local fs = require("nixio.fs")
|
||||
local util = require("luci.util")
|
||||
local uci = require("uci")
|
||||
local adbinput = uci.get("adblock", "global", "adb_whitelist") or "/etc/adblock/adblock.whitelist"
|
||||
local adbinput = uci:get("adblock", "global", "adb_whitelist") or "/etc/adblock/adblock.whitelist"
|
||||
|
||||
if not nixio.fs.access(adbinput) then
|
||||
m = SimpleForm("error", nil, translate("Input file not found, please check your configuration."))
|
||||
|
|
Loading…
Reference in a new issue