Skip to content

Commit

Permalink
Fix progress bar hidding in ProfileIntentActivity
Browse files Browse the repository at this point in the history
  • Loading branch information
tretdm committed Dec 3, 2023
1 parent 670db2d commit c701695
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,8 @@ public void receiveState(int message, Bundle data) {
}
}
}
progressLayout.setVisibility(View.GONE);
findViewById(R.id.fragment).setVisibility(View.VISIBLE);
} else if(message == HandlerMessages.FRIENDS_ADD) {
JSONObject response = new JSONParser().parseJSON(data.getString("response"));
int status = response.getInt("response");
Expand Down

0 comments on commit c701695

Please sign in to comment.