diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/notifications/CardFeedContentState.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/notifications/CardFeedContentState.kt index 9a164718b..917d53319 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/notifications/CardFeedContentState.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/notifications/CardFeedContentState.kt @@ -113,7 +113,6 @@ class CardFeedContentState( (oldNotesState.feed.value + newCards) .distinctBy { it.id() } .sortedWith(DefaultFeedOrderCard) - .reversed() .take(localFilter.limit()) .toImmutableList() @@ -128,7 +127,6 @@ class CardFeedContentState( val cards = convertToCard(notes) .sortedWith(DefaultFeedOrderCard) - .reversed() .take(localFilter.limit()) .toImmutableList()