mirror of
https://codeberg.org/Bazsalanszky/Infinity-For-Lemmy.git
synced 2024-11-06 10:47:27 +01:00
Fix pull down refresh on Post detail pages
The refresh function was incorrectly called, making the loading progress not stopping at all (actually it didn't even start properly)
This commit is contained in:
parent
2ea47cf7fd
commit
d0849e9f27
@ -558,7 +558,7 @@ public class ViewPostDetailFragment extends Fragment implements FragmentCommunic
|
||||
touchHelper.attachToRecyclerView((mCommentsRecyclerView == null ? mRecyclerView : mCommentsRecyclerView));
|
||||
}
|
||||
|
||||
mSwipeRefreshLayout.setOnRefreshListener(() -> refresh());
|
||||
mSwipeRefreshLayout.setOnRefreshListener(() -> refresh(true, true));
|
||||
|
||||
mSmoothScroller = new LinearSmoothScroller(activity) {
|
||||
@Override
|
||||
|
Loading…
Reference in New Issue
Block a user