Fixes a layout error on account profiles.

This commit is contained in:
Vavassor 2017-03-15 16:38:19 -04:00
commit 0c464e488e
2 changed files with 9 additions and 4 deletions

View file

@ -35,6 +35,8 @@ import retrofit2.Call;
import retrofit2.Callback;
public class ViewThreadFragment extends SFragment implements StatusActionListener {
private static final String TAG = "ViewThreadFragment";
private RecyclerView recyclerView;
private ThreadAdapter adapter;
private String thisThreadsStatusId;
@ -136,6 +138,8 @@ public class ViewThreadFragment extends SFragment implements StatusActionListene
}
})
.show();
} else {
Log.e(TAG, "Couldn't display thread fetch error message");
}
}