Skip to content

Commit

Permalink
webui: move logfilter data to a locally stored file
Browse files Browse the repository at this point in the history
  • Loading branch information
RMerl committed Nov 4, 2021
1 parent a888d58 commit aee92df
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion release/src/router/www/Main_LogStatus_Content.asp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
})
Expand Down
1 change: 1 addition & 0 deletions release/src/router/www/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
7 changes: 7 additions & 0 deletions release/src/router/www/ajax/logFilter.json
Original file line number Diff line number Diff line change
@@ -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"
]
}

0 comments on commit aee92df

Please sign in to comment.