Browse Source

BoardActivity fix

pull/70/head
Ezerous 4 years ago
parent
commit
47c074a88c
  1. 2
      app/src/main/java/gr/thmmy/mthmmy/activities/board/BoardActivity.java

2
app/src/main/java/gr/thmmy/mthmmy/activities/board/BoardActivity.java

@ -321,7 +321,7 @@ public class BoardActivity extends BaseActivity implements BoardAdapter.OnLoadMo
pStarter = topicColumns.get(3).text(); pStarter = topicColumns.get(3).text();
pStats = "Replies: " + topicColumns.get(4).text() + ", Views: " + topicColumns.get(5).text(); pStats = "Replies: " + topicColumns.get(4).text() + ", Views: " + topicColumns.get(5).text();
pLastPost = topicColumns.last().text(); pLastPost = topicColumns.get(6).text();
Matcher matcher = pLastPostPattern.matcher(pLastPost); Matcher matcher = pLastPostPattern.matcher(pLastPost);
if (matcher.find()){ if (matcher.find()){
pLastPostDateTime = matcher.group(1); pLastPostDateTime = matcher.group(1);

Loading…
Cancel
Save