🚀 Sync 2026-05-04 20:36:56

This commit is contained in:
github-actions[bot] 2026-05-04 20:36:56 +08:00
parent 25a235a514
commit 8094b1927f
2 changed files with 10 additions and 2 deletions

View File

@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=luci-app-passwall
PKG_VERSION:=26.5.3
PKG_RELEASE:=110
PKG_RELEASE:=111
PKG_PO_VERSION:=$(PKG_VERSION)
PKG_CONFIG_DEPENDS:= \

View File

@ -1668,7 +1668,15 @@ function gen_config(var)
protocol = "dns",
settings = {
nonIPQuery = (api.compare_versions(xray_version, "<", "26.4.25")) and "reject" or nil, -- Todo is to remove it
rules = (api.compare_versions(xray_version, ">", "26.4.17")) and {{ action = "hijack" }} or nil
rules = (api.compare_versions(xray_version, ">", "26.4.17")) and {
{
action = "hijack",
qtype = "1,28"
},
{
action = "reject"
}
} or nil
}
})