diff --git a/release/src/router/www/Main_LogStatus_Content.asp b/release/src/router/www/Main_LogStatus_Content.asp index 64f47c87035..c186a6bd91a 100644 --- a/release/src/router/www/Main_LogStatus_Content.asp +++ b/release/src/router/www/Main_LogStatus_Content.asp @@ -121,7 +121,7 @@ var filter = [ "not exist in UDB, can't update it" ] -$.getJSON("https://nw-dlcdnet.asus.com/plugin/js/logFilter.json", function(data){ +$.getJSON("/ajax/logFilter.json", function(data){ filter = data.filter; }) diff --git a/release/src/router/www/Makefile b/release/src/router/www/Makefile index 7fb8f0725bc..255d805ee0e 100644 --- a/release/src/router/www/Makefile +++ b/release/src/router/www/Makefile @@ -981,3 +981,4 @@ update: wget http://nw-dlcdnet.asus.com/plugin/js/dns_db.json -O ajax/dns_db.json wget http://nw-dlcdnet.asus.com/plugin/js/ouiDB.json -O ajax/ouiDB.json wget http://nw-dlcdnet.asus.com/plugin/js/gameList.json -O ajax/gameList.json + wget http://nw-dlcdnet.asus.com/plugin/js/logFilter.json -O ajax/logFilter.json diff --git a/release/src/router/www/ajax/logFilter.json b/release/src/router/www/ajax/logFilter.json new file mode 100644 index 00000000000..f29872f8dc3 --- /dev/null +++ b/release/src/router/www/ajax/logFilter.json @@ -0,0 +1,7 @@ +{ + "filter": [ + "already exist in UDB, can't add it", + "not mesh client, can't update it's ip", + "not exist in UDB, can't update it" + ] +} \ No newline at end of file