Filtering duplicates from Follows list

This commit is contained in:
Vitor Pamplona
2023-03-14 19:15:40 -04:00
parent ee753e5c95
commit 2e365b67ea

View File

@@ -16,7 +16,7 @@ object UserProfileFollowsFeedFilter : FeedFilter<User>() {
override fun feed(): List<User> {
return user?.latestContactList?.unverifiedFollowKeySet()?.map {
LocalCache.getOrCreateUser(it)
}
}?.toSet()
?.filter { account.isAcceptable(it) }
?.reversed() ?: emptyList()
}