mirror of
https://github.com/KokaKiwi/BarInsta
synced 2024-11-14 02:37:30 +00:00
close #1667
This commit is contained in:
parent
4641fe27dc
commit
10bc98125c
@ -477,7 +477,7 @@ class ProfileFragment : Fragment(), OnRefreshListener, ConfirmDialogFragmentCall
|
||||
setupFavChip(profile, currentUser)
|
||||
setupFavButton(currentUser, profile)
|
||||
setupSavedButton(currentUser, profile)
|
||||
setupTaggedButton(currentUser, profile)
|
||||
setupTaggedButton(profile)
|
||||
setupLikedButton(currentUser, profile)
|
||||
setupDMButton(currentUser, profile)
|
||||
if (profile == null) return@observe
|
||||
@ -755,8 +755,8 @@ class ProfileFragment : Fragment(), OnRefreshListener, ConfirmDialogFragmentCall
|
||||
}
|
||||
}
|
||||
|
||||
private fun setupTaggedButton(currentUser: User?, profile: User?) {
|
||||
val visibility = if (currentUser != null && profile?.pk == currentUser.pk) View.VISIBLE else View.GONE
|
||||
private fun setupTaggedButton(profile: User?) {
|
||||
val visibility = if (profile?.usertagsCount == 0L) View.GONE else View.VISIBLE
|
||||
binding.header.btnTagged.visibility = visibility
|
||||
if (visibility == View.GONE) {
|
||||
binding.header.btnTagged.setOnClickListener(null)
|
||||
|
Loading…
Reference in New Issue
Block a user