Skip to content

Commit

Permalink
fix(hhanclub): remove "[新]" in title when getting search results
Browse files Browse the repository at this point in the history
  • Loading branch information
ixff authored and fzlins committed Oct 20, 2024
1 parent 12abe26 commit a984c17
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions resource/sites/hhanclub.top/getSearchResult.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
// 遍历数据行
for (let index = 0; index < rows.length; index++) {
const row = rows.eq(index);
row.find(".torrent-info-text-name .new").remove();
let title = row.find(".torrent-info-text-name");
if (title.length == 0) {
continue;
Expand Down

0 comments on commit a984c17

Please sign in to comment.