更新 'SrcJyData.js'

master
src48597962 6 months ago
parent 6fe67f6428
commit fa755e93a9
  1. 13
      SrcJyData.js

@ -966,14 +966,13 @@ function getSsData(name, jkdata, page) {
try { try {
lists.forEach((list) => { lists.forEach((list) => {
let vodpic = list.pic ? list.pic.replace(/http.*\/tu\.php\?tu=|\/img\.php\?url=| |\/tu\.php\?tu=/g, '') : getIcon("404.jpg"); let vodpic = list.pic ? list.pic.replace(/http.*\/tu\.php\?tu=|\/img\.php\?url=| |\/tu\.php\?tu=/g, '') : getIcon("404.jpg");
if(!/^hiker/.test(vodpic)){ if(vodpic.startsWith("//")){
if (/^\/\//.test(vodpic)) { vodpic = "https:" + vodpic;
vodpic = "https:" + vodpic;
}
if(!/^http/.test(vodpic) && list.id.startsWith('http')){
vodpic = getHome(list.id) + vodpic;
}
} }
if(!/^http|^hiker/.test(vodpic) && list.id.startsWith('http')){
vodpic = getHome(list.id) + '/' + vodpic;
}
if (searchContains(list.name, name, true)) { if (searchContains(list.name, name, true)) {
searchs.push({ searchs.push({
vod_name: list.name.replace('立刻播放',''), vod_name: list.name.replace('立刻播放',''),

Loading…
Cancel
Save