Skip to content

Commit

Permalink
smartdns: update to git HEAD
Browse files Browse the repository at this point in the history
  • Loading branch information
HiGarfield committed Nov 30, 2023
1 parent 4d19a4b commit bac522c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ o = s:taboption("advanced", Flag, "tls_server", translate("DOT Server"), transla
o.rmempty = false
o.default = o.disabled
o.cfgvalue = function(...)
return Flag.cfgvalue(...) or "1"
return Flag.cfgvalue(...) or "0"
end

o = s:taboption("advanced", Value, "tls_server_port", translate("DOT Server Port"), translate("Smartdns DOT server port."))
Expand All @@ -150,7 +150,7 @@ o = s:taboption("advanced", Flag, "doh_server", translate("DOH Server"), transla
o.rmempty = false
o.default = o.disabled
o.cfgvalue = function(...)
return Flag.cfgvalue(...) or "1"
return Flag.cfgvalue(...) or "0"
end

o = s:taboption("advanced", Value, "doh_server_port", translate("DOH Server Port"), translate("Smartdns DOH server port."))
Expand Down
2 changes: 1 addition & 1 deletion package/extra/smartdns/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ PKG_NAME:=smartdns

PKG_SOURCE_PROTO:=git
PKG_SOURCE_URL:=https://www.github.com/pymumu/smartdns.git
PKG_SOURCE_VERSION:=066c472467f9e50d716030477c70d5b5ac479ad6
PKG_SOURCE_VERSION:=407aba08c5512a8e654864195e1d738f75527aa2
PKG_MIRROR_HASH:=skip
PKG_RELEASE:=1

Expand Down

0 comments on commit bac522c

Please sign in to comment.