Fix crash when opening search and there is no thread loaded

filtering
Floens 10 years ago
parent f83e6ec0e8
commit bc5bc8564c
  1. 5
      Clover/app/src/main/java/org/floens/chan/core/presenter/ThreadPresenter.java

@ -159,7 +159,10 @@ public class ThreadPresenter implements ChanLoader.ChanLoaderCallback, PostAdapt
if (!visible) {
searchQuery = null;
}
showPosts();
if (chanLoader.getThread() != null) {
showPosts();
}
}
public void onSearchEntered(String entered) {

Loading…
Cancel
Save