Merge pull request #19262 from stangri/openwrt-22.03-simple-adblock

[22.03] simple-adblock: bugfix for allow command
This commit is contained in:
Stan Grishin 2022-08-26 22:52:35 +03:00 committed by GitHub
commit bcafba4320
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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;