Skip to content

Commit

Permalink
kind 改位String
Browse files Browse the repository at this point in the history
  • Loading branch information
gedoor committed Aug 2, 2019
1 parent 7ffea37 commit fc96563
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion app/src/main/assets/updateLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
* 修复更新详情页不保存的bug
* 高级功能改为一个月点一次
* 修复web写源会丢音频标志的bug
* 详情页分类改为数组

**2019/07/25**
* 修复一些bug
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ private SearchBookBean getItem(AnalyzeRule analyzer, String baseUrl) throws Exce
item.setCoverUrl(analyzer.getString(bookSourceBean.getRuleCoverUrl(), true));
Debug.printLog(tag, "└" + item.getCoverUrl());
Debug.printLog(tag, "┌获取分类");
item.setKind(StringUtils.join(",", analyzer.getStringList(bookSourceBean.getRuleBookKind())));
item.setKind(analyzer.getString(bookSourceBean.getRuleBookKind()));
Debug.printLog(tag, "└" + item.getKind());
Debug.printLog(tag, "┌获取最新章节");
item.setLastChapter(analyzer.getString(bookSourceBean.getRuleBookLastChapter()));
Expand Down Expand Up @@ -242,7 +242,7 @@ private SearchBookBean getItemAllInOne(AnalyzeRule analyzer, Object object, Stri
item.setAuthor(StringUtils.formatHtml(String.valueOf(nativeObject.get(ruleAuthor))));
Debug.printLog(tag, "└" + item.getAuthor(), printLog);
Debug.printLog(tag, "┌获取分类", printLog);
item.setKind(StringUtils.join(",", String.valueOf(nativeObject.get(ruleKind))));
item.setKind(String.valueOf(nativeObject.get(ruleKind)));
Debug.printLog(tag, "└" + item.getKind(), printLog);
Debug.printLog(tag, "┌获取最新章节", printLog);
item.setLastChapter(String.valueOf(nativeObject.get(ruleLastChapter)));
Expand Down Expand Up @@ -279,7 +279,7 @@ private SearchBookBean getItemInList(AnalyzeRule analyzer, String baseUrl, boole
item.setAuthor(StringUtils.formatHtml(analyzer.getString(ruleAuthor)));
Debug.printLog(tag, "└" + item.getAuthor(), printLog);
Debug.printLog(tag, "┌获取分类", printLog);
item.setKind(StringUtils.join(",", analyzer.getStringList(ruleKind)));
item.setKind(analyzer.getString(ruleKind));
Debug.printLog(tag, "└" + item.getKind(), printLog);
Debug.printLog(tag, "┌获取最新章节", printLog);
item.setLastChapter(analyzer.getString(ruleLastChapter));
Expand Down

0 comments on commit fc96563

Please sign in to comment.