FileBrowser: change CATEGORY

This commit is contained in:
CN_SZTL 2019-08-24 22:02:07 +08:00
parent 60f518a554
commit cb8c0018d1
No known key found for this signature in database
GPG Key ID: 6850B6345C862176
2 changed files with 6 additions and 6 deletions

View File

@ -18,8 +18,8 @@ PKG_MAINTAINER:=[CTCGFW] Project OpenWRT
include $(INCLUDE_DIR)/package.mk
define Package/$(PKG_NAME)
SECTION:=net
CATEGORY:=Network
SECTION:=utils
CATEGORY:=Utilities
TITLE:=LuCI Support for FileBrowser.
URL:=https://github.com/filebrowser/filebrowser
endef

View File

@ -72,14 +72,14 @@ function refresh_data()
retstring ="0"
end
else
retstring ="-1"
retstring ="-1"
end
luci.sys.exec("rm -f /tmp/gfwnew.txt ")
else
retstring ="-1"
end
elseif set == "ip_data" then
refresh_cmd="wget -O- 'http://ftp.apnic.net/apnic/stats/apnic/delegated-apnic-latest' 2>/dev/null| awk -F\\| '/CN\\|ipv4/ { printf(\"%s/%d\\n\", $4, 32-log($5)/log(2)) }' > /tmp/china_ssr.txt"
refresh_cmd="wget -O- 'http://ftp.apnic.net/apnic/stats/apnic/delegated-apnic-latest' 2>/dev/null| awk -F\\| '/CN\\|ipv4/ { printf(\"%s/%d\\n\", $4, 32-log($5)/log(2)) }' > /tmp/china_ssr.txt"
sret=luci.sys.call(refresh_cmd)
icount = luci.sys.exec("cat /tmp/china_ssr.txt | wc -l")
if sret== 0 and tonumber(icount)>1000 then
@ -124,7 +124,7 @@ function refresh_data()
retstring ="0"
end
else
retstring ="-1"
retstring ="-1"
end
luci.sys.exec("rm -f /tmp/ad.conf ")
else
@ -168,4 +168,4 @@ end)
luci.http.prepare_content("application/json")
luci.http.write_json({ ret=retstring })
end
end