fix(ProfileFragment): max out number of profile roles to 4

This commit is contained in:
LucasGGamerM
2023-09-25 07:18:46 -03:00
parent d7ab019107
commit 8a3df3657b

View File

@@ -44,7 +44,7 @@ import me.grishka.appkit.utils.V;
import me.grishka.appkit.views.UsableRecyclerView;
public class ProfileAboutFragment extends Fragment implements WindowInsetsAwareFragment{
static final int MAX_FIELDS=Integer.MAX_VALUE;
static final int MAX_FIELDS=4;
public UsableRecyclerView list;
private List<AccountField> fields=Collections.emptyList();