'更新可用状态'

This commit is contained in:
zhangjie
2024-03-22 11:10:04 +08:00
parent 1e45aabb50
commit 939941d778
4 changed files with 3 additions and 3 deletions

View File

@@ -77,7 +77,7 @@ public class Ikanbot extends Spider {
@Override
public String categoryContent(String tid, String pg, boolean filter, HashMap<String, String> extend) throws Exception {
String target = cateUrl + tid + "-热门";
if (pg != "1"){
if (!"1".equals(pg)){
target = target + "-p-" + pg;
}
Document doc = Jsoup.parse(OkHttp.string(target.concat(".html"), getHeaders()));

View File

@@ -90,7 +90,7 @@ public class MiMei extends Spider {
@Override
public String categoryContent(String tid, String pg, boolean filter, HashMap<String, String> extend) throws Exception {
String target = cateUrl + tid;
if (pg == "1"){
if ("1".equals(pg)){
target = target ;
}else {
target = target + "/index_" + pg + ".html";