mirror of
https://github.com/vitorpamplona/amethyst.git
synced 2025-04-03 09:28:18 +02:00
hide follow button when the user already followed
This commit is contained in:
parent
f1711719f4
commit
8e858996fe
@ -629,7 +629,8 @@ fun NoteDropDownMenu(note: Note, popupExpanded: Boolean, onDismiss: () -> Unit,
|
||||
expanded = popupExpanded,
|
||||
onDismissRequest = onDismiss
|
||||
) {
|
||||
if (note.author != accountViewModel.accountLiveData.value?.account?.userProfile()) {
|
||||
if (note.author != accountViewModel.accountLiveData.value?.account?.userProfile() && !accountViewModel.accountLiveData.value?.account?.userProfile()
|
||||
!!.isFollowing(note.author!!)) {
|
||||
|
||||
DropdownMenuItem(onClick = {
|
||||
accountViewModel.follow(
|
||||
|
Loading…
x
Reference in New Issue
Block a user