Skip to content
This repository has been archived by the owner on Jun 1, 2023. It is now read-only.

Commit

Permalink
Update ProfileAdapter.java
Browse files Browse the repository at this point in the history
  • Loading branch information
artdeell authored Mar 20, 2022
1 parent e8697c6 commit 3aa5615
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public ProfileAdapter(Context context, boolean enableCreateButton) {
mCreateProfile.name = "Create new profile";
mCreateProfile.lastVersionId = "";
}
mProfileList = new ArrayList<>(Arrays.asList(profiles.keySet().toArray(new String[0])));
mProfileList = new ArrayList<>(Arrays.asList(mProfiles.keySet().toArray(new String[0])));
if(enableCreateButton) {
mProfileList.add(ProfileAdapter.CREATE_PROFILE_MAGIC);
mProfiles.put(CREATE_PROFILE_MAGIC, mCreateProfile);
Expand Down

0 comments on commit 3aa5615

Please sign in to comment.