Skip to content

Commit

Permalink
更新
Browse files Browse the repository at this point in the history
  • Loading branch information
Invinciblelee committed May 11, 2019
1 parent 8442694 commit 1f8901b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,9 @@ public String getResultUrlInternal(String rule) {
if (object instanceof NativeObject) {
result = StringUtils.valueOf(((NativeObject) object).get(rule));
} else if (object instanceof Element) {
result = ((Element) object).attr(rule);
Element element = (Element) object;
Element find = element.selectFirst(rule);
result = StringUtils.checkNull(find == null ? null : find.text(), element.attr(rule));
} else if (object instanceof JXNode) {
result = StringUtils.valueOf(((JXNode) object).selOne(rule));
} else {
Expand Down
4 changes: 2 additions & 2 deletions app/version.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#Sat May 11 12:01:45 CST 2019
VERSION_CODE=2860
#Sat May 11 18:09:43 CST 2019
VERSION_CODE=2861

0 comments on commit 1f8901b

Please sign in to comment.