Fix crash when opening search and there is no thread loaded

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

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

Loading…
Cancel
Save