Skip to content

Commit

Permalink
fix: Fix follow button in follow list
Browse files Browse the repository at this point in the history
  • Loading branch information
dluvian committed Jul 7, 2024
1 parent 66d25ee commit 64a0a93
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,9 @@ class ProfileProvider(
val friendsWithoutProfile = profileDao.getUnknownFriends()

return forcedFollowFlow.map { forcedFollows ->
friends + friendsWithoutProfile.map { pubkey ->
friends.map {
it.copy(isFriend = forcedFollows[it.pubkey] ?: true)
} + friendsWithoutProfile.map { pubkey ->
createAdvancedProfile(
pubkey = pubkey,
dbProfile = null,
Expand Down

0 comments on commit 64a0a93

Please sign in to comment.