Fixed possible NPE

In PostAdapter.getCount, the loadable can be null.
captchafix
Florens Douwes 11 years ago
parent 6189ee1589
commit feb24a12ea
  1. 2
      Chan/src/org/floens/chan/ui/adapter/PostAdapter.java

@ -37,7 +37,7 @@ public class PostAdapter extends BaseAdapter {
@Override
public int getCount() {
if (threadManager.getLoadable().isBoardMode() || threadManager.shouldWatch()) {
if ((threadManager.getLoadable() != null && threadManager.getLoadable().isBoardMode()) || threadManager.shouldWatch()) {
return postList.size() + 1;
} else {
return postList.size();

Loading…
Cancel
Save