From 51c0c44a2efafcb3f9fed2ab374a8c0b10303b3f Mon Sep 17 00:00:00 2001 From: Vitor Pamplona Date: Thu, 13 Jul 2023 08:52:47 -0400 Subject: [PATCH] Formatting --- .../amethyst/ui/dal/UserProfileNewThreadFeedFilter.kt | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/app/src/main/java/com/vitorpamplona/amethyst/ui/dal/UserProfileNewThreadFeedFilter.kt b/app/src/main/java/com/vitorpamplona/amethyst/ui/dal/UserProfileNewThreadFeedFilter.kt index f8ed77341..768448492 100644 --- a/app/src/main/java/com/vitorpamplona/amethyst/ui/dal/UserProfileNewThreadFeedFilter.kt +++ b/app/src/main/java/com/vitorpamplona/amethyst/ui/dal/UserProfileNewThreadFeedFilter.kt @@ -18,10 +18,11 @@ class UserProfileNewThreadFeedFilter(val user: User, val account: Account) : Fee val longFormNotes = LocalCache.addressables.values .filter { it.author == user && - (it.event !is PeopleListEvent - && it.event !is BookmarkListEvent - && it.event !is AppRecommendationEvent - && it.event !is EmojiPackSelectionEvent + ( + it.event !is PeopleListEvent && + it.event !is BookmarkListEvent && + it.event !is AppRecommendationEvent && + it.event !is EmojiPackSelectionEvent ) }