simple-adblock: bugfix for allow command

Signed-off-by: Stan Grishin <stangri@melmac.ca>
(cherry picked from commit 717499e62b)
This commit is contained in:
Stan Grishin 2022-08-26 18:43:45 +00:00
parent c25231611d
commit 7073e7fb00

View file

@ -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;