Skip to content

Commit

Permalink
Invert the order of the hidden users in the screen.
Browse files Browse the repository at this point in the history
  • Loading branch information
vitorpamplona committed Feb 10, 2024
1 parent dc9a9f2 commit 27248bf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class HiddenAccountsFeedFilter(val account: Account) : FeedFilter<User>() {
}

override fun feed(): List<User> {
return account.flowHiddenUsers.value.hiddenUsers.map { LocalCache.getOrCreateUser(it) }
return account.flowHiddenUsers.value.hiddenUsers.reversed().map { LocalCache.getOrCreateUser(it) }
}
}

Expand Down

0 comments on commit 27248bf

Please sign in to comment.