Merge pull request #19262 from stangri/openwrt-22.03-simple-adblock
[22.03] simple-adblock: bugfix for allow command
This commit is contained in:
commit
bcafba4320
1 changed files with 2 additions and 2 deletions
|
@ -1189,7 +1189,7 @@ allow() {
|
|||
done
|
||||
output 2 "Committing changes to config... "
|
||||
if [ -n "$(uci_changes "$packageName")" ] && uci_commit "$packageName"; then
|
||||
allowed_domains="$(uci_get_list "$packageName" 'config' 'allowed_domain')"
|
||||
allowed_domains="$(uci_get "$packageName" 'config' 'allowed_domain')"
|
||||
jsonOps set triggers
|
||||
jsonOps set stats "$serviceName is blocking $(wc -l < "$outputFile") domains (with ${targetDNS})"
|
||||
output_ok;
|
||||
|
@ -1217,7 +1217,7 @@ allow() {
|
|||
done
|
||||
output 2 "Committing changes to config... "
|
||||
if [ -n "$(uci_changes "$packageName")" ] && uci_commit "$packageName"; then
|
||||
allowed_domains="$(uci_get_list "$packageName" 'config' 'allowed_domain')"
|
||||
allowed_domains="$(uci_get "$packageName" 'config' 'allowed_domain')"
|
||||
jsonOps set triggers
|
||||
jsonOps set stats "$serviceName is blocking $(wc -l < "$outputFile") domains (with ${targetDNS})"
|
||||
output_ok;
|
||||
|
|
Loading…
Reference in a new issue