1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/adguardhome_ynh.git synced 2024-09-03 18:06:23 +02:00

add the missing --app to ynh_app_setting_set

This commit is contained in:
OniriCorpe 2023-12-31 22:39:46 +01:00
parent bdbd7b7596
commit 98f1689437

View file

@ -52,7 +52,7 @@ set__open_port_53() {
update_agh_ip_config
# save the new setting
ynh_app_setting_set "$app" --key=open_port_53 --value="$open_port_53" --debug
ynh_app_setting_set --app="$app" --key=open_port_53 --value="$open_port_53" --debug
}
set__dns_over_https() {
@ -75,7 +75,7 @@ set__dns_over_https() {
fi
# save the new setting
ynh_app_setting_set "$app" --key=dns_over_https --value="$dns_over_https"
ynh_app_setting_set --app="$app" --key=dns_over_https --value="$dns_over_https"
}
#=================================================