Fix doll img

This commit is contained in:
FongMi 2024-02-29 21:49:31 +08:00
parent b5ece8d1fb
commit c081166e8f
3 changed files with 4 additions and 4 deletions

View File

@ -37,7 +37,7 @@ public class Doll extends Spider {
for (Element div : doc.select("div.video-detail")) {
String id = div.select("h3.video-title > a").attr("href").replace(url, "");
String name = div.select("h3.video-title > a").text();
String pic = url + div.select("div.thumb > a > img").attr("data-src");
String pic = div.select("div.thumb > a > img").attr("data-src");
String remark = div.select("div.date").text();
list.add(new Vod(id, name, pic, remark));
}
@ -52,7 +52,7 @@ public class Doll extends Spider {
for (Element div : doc.select("div.video-detail")) {
String id = div.select("h3.video-title > a").attr("href").replace(url, "");
String name = div.select("h3.video-title > a").text();
String pic = url + div.select("div.thumb > a > img").attr("data-src");
String pic = div.select("div.thumb > a > img").attr("data-src");
String remark = div.select("div.date").text();
list.add(new Vod(id, name, pic, remark));
}
@ -117,7 +117,7 @@ public class Doll extends Spider {
for (Element div : doc.select("div.video-detail")) {
String id = div.select("h3.video-title > a").attr("href").replace(url, "");
String name = div.select("h3.video-title > a").text();
String pic = url + div.select("div.thumb > a > img").attr("data-src");
String pic = div.select("div.thumb > a > img").attr("data-src");
String remark = div.select("div.date").text();
list.add(new Vod(id, name, pic, remark));
}

Binary file not shown.

View File

@ -1 +1 @@
e727f2c84004481b19e7026ef9fff24d
6a77140c25470026f08522e50103cf8d