From fdf0b69e5de4920619f2aafdbd5fc76a82080af4 Mon Sep 17 00:00:00 2001 From: Vitor Pamplona Date: Wed, 3 Jul 2024 13:49:57 -0400 Subject: [PATCH] Lint formatting --- .../amethyst/ui/dal/UserProfileNewThreadFeedFilter.kt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/dal/UserProfileNewThreadFeedFilter.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/dal/UserProfileNewThreadFeedFilter.kt index 7a55c6dc3..aecedf631 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/dal/UserProfileNewThreadFeedFilter.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/dal/UserProfileNewThreadFeedFilter.kt @@ -74,7 +74,9 @@ class UserProfileNewThreadFeedFilter( it.event is HighlightEvent || it.event is AudioTrackEvent || it.event is AudioHeaderEvent - ) && it.isNewThread() && account.isAcceptable(it) + ) && + it.isNewThread() && + account.isAcceptable(it) override fun sort(collection: Set): List = collection.sortedWith(DefaultFeedOrder)