mirror of
https://github.com/KokaKiwi/BarInsta
synced 2025-11-20 21:06:32 +00:00
make needed changes - issue #1047
This commit is contained in:
parent
a5759b6c1b
commit
990cb8fdcd
1 changed files with 2 additions and 3 deletions
|
|
@ -693,9 +693,6 @@ public class ProfileFragment extends Fragment implements SwipeRefreshLayout.OnRe
|
||||||
fetchStoryAndHighlights(profileId);
|
fetchStoryAndHighlights(profileId);
|
||||||
}
|
}
|
||||||
setupButtons(profileId);
|
setupButtons(profileId);
|
||||||
final boolean isNotMe = profileModel != null && !Objects.equals(profileId, myId);
|
|
||||||
profileDetailsBinding.favChip.setVisibility(isNotMe ? View.VISIBLE : View.GONE);
|
|
||||||
profileDetailsBinding.favChip.setVisibility(View.VISIBLE);
|
|
||||||
final FavoriteRepository favoriteRepository = FavoriteRepository.getInstance(FavoriteDataSource.getInstance(getContext()));
|
final FavoriteRepository favoriteRepository = FavoriteRepository.getInstance(FavoriteDataSource.getInstance(getContext()));
|
||||||
favoriteRepository.getFavorite(profileModel.getUsername(), FavoriteType.USER, new RepositoryCallback<Favorite>() {
|
favoriteRepository.getFavorite(profileModel.getUsername(), FavoriteType.USER, new RepositoryCallback<Favorite>() {
|
||||||
@Override
|
@Override
|
||||||
|
|
@ -940,6 +937,7 @@ public class ProfileFragment extends Fragment implements SwipeRefreshLayout.OnRe
|
||||||
profileDetailsBinding.btnSaved.setVisibility(View.VISIBLE);
|
profileDetailsBinding.btnSaved.setVisibility(View.VISIBLE);
|
||||||
profileDetailsBinding.btnLiked.setVisibility(View.VISIBLE);
|
profileDetailsBinding.btnLiked.setVisibility(View.VISIBLE);
|
||||||
profileDetailsBinding.btnDM.setVisibility(View.GONE);
|
profileDetailsBinding.btnDM.setVisibility(View.GONE);
|
||||||
|
profileDetailsBinding.favChip.setVisibility(View.GONE);
|
||||||
profileDetailsBinding.btnSaved.setText(R.string.saved);
|
profileDetailsBinding.btnSaved.setText(R.string.saved);
|
||||||
if (!accountIsUpdated) updateAccountInfo();
|
if (!accountIsUpdated) updateAccountInfo();
|
||||||
return;
|
return;
|
||||||
|
|
@ -948,6 +946,7 @@ public class ProfileFragment extends Fragment implements SwipeRefreshLayout.OnRe
|
||||||
profileDetailsBinding.btnLiked.setVisibility(View.GONE);
|
profileDetailsBinding.btnLiked.setVisibility(View.GONE);
|
||||||
profileDetailsBinding.btnDM.setVisibility(disableDm ? View.GONE : View.VISIBLE);
|
profileDetailsBinding.btnDM.setVisibility(disableDm ? View.GONE : View.VISIBLE);
|
||||||
profileDetailsBinding.btnFollow.setVisibility(View.VISIBLE);
|
profileDetailsBinding.btnFollow.setVisibility(View.VISIBLE);
|
||||||
|
profileDetailsBinding.favChip.setVisibility(View.VISIBLE);
|
||||||
final Context context = getContext();
|
final Context context = getContext();
|
||||||
if (context == null) return;
|
if (context == null) return;
|
||||||
if (profileModel.getFriendshipStatus().isFollowing() || profileModel.getFriendshipStatus().isFollowedBy()) {
|
if (profileModel.getFriendshipStatus().isFollowing() || profileModel.getFriendshipStatus().isFollowedBy()) {
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue