Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yichahucha authored Jan 27, 2023
1 parent 747efaa commit 613f9b2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion wb_ad.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ const path26 = "/statuses/container_timeline_hot"
const path27 = "/search/finder"
const path28 = "/statuses/container_timeline_unread"
const path29 = "/statuses/container_timeline"
const path30 = "/profile/container_timeline"

const url = $request.url;
let body = $response.body;
Expand Down Expand Up @@ -126,7 +127,7 @@ if (
let obj = JSON.parse(body);
filter_messageflow_notice(obj)
body = JSON.stringify(obj);
} else if (url.indexOf(path26) != -1 || url.indexOf(path28) != -1 || url.indexOf(path29) != -1) {
} else if ( url.indexOf(path30) != -1 || url.indexOf(path26) != -1 || url.indexOf(path28) != -1 || url.indexOf(path29) != -1) {
let obj = JSON.parse(body);
filter_items_feed(obj)
body = JSON.stringify(obj);
Expand Down

0 comments on commit 613f9b2

Please sign in to comment.