fix(Discover): switch post and hashtag fragments everywhere
Fixes a regression in 5edbe9b826
, whcih
did not switch the fragments everywhere. This caused the scroll-to-top
functionality to not work and the posts to not immediatly load.
Closes https://github.com/LucasGGamerM/moshidon/issues/483.
This commit is contained in:
parent
81519fe906
commit
2dada69eb8
|
@ -260,8 +260,8 @@ public class DiscoverFragment extends AppKitFragment implements ScrollableToTop,
|
||||||
|
|
||||||
private Fragment getFragmentForPage(int page){
|
private Fragment getFragmentForPage(int page){
|
||||||
return switch(page){
|
return switch(page){
|
||||||
case 0 -> hashtagsFragment;
|
case 0 -> postsFragment;
|
||||||
case 1 -> postsFragment;
|
case 1 -> hashtagsFragment;
|
||||||
case 2 -> newsFragment;
|
case 2 -> newsFragment;
|
||||||
case 3 -> accountsFragment;
|
case 3 -> accountsFragment;
|
||||||
default -> throw new IllegalStateException("Unexpected value: "+page);
|
default -> throw new IllegalStateException("Unexpected value: "+page);
|
||||||
|
|
Loading…
Reference in New Issue