Fix YHDM
This commit is contained in:
parent
ac3b7c8b00
commit
50f5ead582
|
|
@ -62,8 +62,7 @@ public class YHDM extends Spider {
|
|||
String pic = li.select("a").attr("data-original");
|
||||
if (!pic.startsWith("http")) pic = siteUrl + pic;
|
||||
String remark = li.select(".pic-text.text-right").text();
|
||||
String year = li.select(".tag").text();
|
||||
list.add(new Vod(vid, name, pic, remark, year));
|
||||
list.add(new Vod(vid, name, pic, remark));
|
||||
}
|
||||
return Result.string(classes, list);
|
||||
}
|
||||
|
|
@ -79,8 +78,7 @@ public class YHDM extends Spider {
|
|||
String pic = li.select("a").attr("data-original");
|
||||
if (!pic.startsWith("http")) pic = siteUrl + pic;
|
||||
String remark = li.select(".pic-text.text-right").text();
|
||||
String year = li.select(".tag").text();
|
||||
list.add(new Vod(vid, name, pic, remark, year));
|
||||
list.add(new Vod(vid, name, pic, remark));
|
||||
}
|
||||
return Result.string(list);
|
||||
}
|
||||
|
|
@ -137,8 +135,7 @@ public class YHDM extends Spider {
|
|||
String pic = li.select("a").attr("data-original");
|
||||
if (!pic.startsWith("http")) pic = siteUrl + pic;
|
||||
String remark = li.select(".pic-text.text-right").text();
|
||||
String year = li.select(".tag").text();
|
||||
list.add(new Vod(vid, name, pic, remark, year));
|
||||
list.add(new Vod(vid, name, pic, remark));
|
||||
}
|
||||
return Result.string(list);
|
||||
}
|
||||
|
|
|
|||
Binary file not shown.
|
|
@ -1 +1 @@
|
|||
d3032c67b4ae4bd21fa7c070544a111a
|
||||
30475cb40e951ed14bd9eb591eedca80
|
||||
|
|
|
|||
Loading…
Reference in New Issue