Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
qist committed Jul 31, 2024
1 parent 3039e90 commit de21d76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/jsp.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ var rule = {
let json = JSON.parse(html);
json.data.docinfos.forEach(function(data) {
let channelName = data.albumDocInfo.channel.split(',')[0];
if (channelName.includes('电影') || channelName.includes('电视剧') || channelName.includes('综艺') || channelName.includes('动漫') || channelName.includes('少儿')) {
if ((data.is_exactly_same === true)&&(channelName.includes('电影') || channelName.includes('电视剧') || channelName.includes('综艺') || channelName.includes('动漫') || channelName.includes('少儿'))) {
d.push({
url: "https://www.tycng.com/jsp.php?jx=" + data.albumDocInfo.albumTitle,
title: data.albumDocInfo.albumTitle,
Expand All @@ -93,5 +93,5 @@ var rule = {
}
});
setResult(d);
`
`
}

0 comments on commit de21d76

Please sign in to comment.