Skip to content

Commit

Permalink
fix tuhao updatetime
Browse files Browse the repository at this point in the history
  • Loading branch information
Haleydu committed Jul 26, 2020
1 parent 1547084 commit 150a167
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/src/main/java/com/hiroshi/cimoc/source/TuHao.java
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ protected Comic parse(Node node) {
String cid = node.hrefWithSplit("li > a", 1);
String cover = node.attr("a.pic > img", "src");
String update = node.text("li.updata > a > span");

return new Comic(TYPE, cid, title, cover, update, null);
}
};
Expand All @@ -83,7 +84,7 @@ public void parseInfo(String html, Comic comic) throws UnsupportedEncodingExcept
String intro = body.text("p#comic-description");
String title = body.text("div.cy_title > h1");

String update = "";
String update = body.text("div.cy_zhangjie_top > p >font");;
String author = body.text("div.cy_xinxi > span:eq(0)");

// 连载状态
Expand Down

0 comments on commit 150a167

Please sign in to comment.