Removes sorting of the blocked list because it needs to load all metadata to sort correctly.

This commit is contained in:
Vitor Pamplona
2023-05-30 12:07:15 -04:00
parent 5ab94e8a1c
commit b301e1d79b
@@ -7,5 +7,4 @@ object HiddenAccountsFeedFilter : FeedFilter<User>() {
lateinit var account: Account
override fun feed() = account.hiddenUsers()
.sortedWith(compareBy({ it.toBestDisplayName() }, { it.pubkeyHex }))
}