fix bug where revoking a follow request was not possible

This commit is contained in:
Conny Duck 2018-07-22 14:34:55 +02:00
parent 5538c8c5e7
commit 0102a4bd60
1 changed files with 2 additions and 1 deletions

View File

@ -83,7 +83,8 @@ class AccountViewModel @Inject constructor(
}
fun changeFollowState(id: String) {
if (relationshipData.value?.data?.following == true) {
val relationship = relationshipData.value?.data
if (relationship?.following == true || relationship?.requested == true) {
changeRelationship(RelationShipAction.UNFOLLOW, id)
} else {
changeRelationship(RelationShipAction.FOLLOW, id)