fix(follow-more): fix follow more fragment pointing to edit profile

This was probably made to be used on the create new account procedure, and it was being reused on the Home tab long click action. As we don't have an account creation procedure on Moshidon, we can just stop pointing to the OnboardingProfileSetup fragment
This commit is contained in:
LucasGGamerM
2023-06-06 19:38:04 -03:00
parent 2baf51616c
commit c196dc563f

View File

@@ -215,9 +215,9 @@ public class OnboardingFollowSuggestionsFragment extends RecyclerFragment<Parsed
}
private void proceed(){
Bundle args=new Bundle();
args.putString("account", accountID);
Nav.go(getActivity(), OnboardingProfileSetupFragment.class, args);
// Bundle args=new Bundle();
// args.putString("account", accountID);
// Nav.go(getActivity(), OnboardingProfileSetupFragment.class, args);
}
private class SuggestionsAdapter extends UsableRecyclerView.Adapter<SuggestionViewHolder> implements ImageLoaderRecyclerAdapter{