diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/lists/FollowSet.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/lists/FollowSet.kt index b1cb02731..164c8acaf 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/lists/FollowSet.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/lists/FollowSet.kt @@ -44,14 +44,14 @@ data class FollowSet( event.privateTaggedUsers(signer) { userList -> privateFollows.addAll(userList) } return if (publicFollows.isEmpty() && privateFollows.isNotEmpty()) { FollowSet( - type = ListType.Public, + type = ListType.Private, title = listTitle, description = listDescription, profileList = privateFollows.toSet(), ) } else if (publicFollows.isNotEmpty() && privateFollows.isEmpty()) { FollowSet( - type = ListType.Private, + type = ListType.Public, title = listTitle, description = listDescription, profileList = publicFollows.toSet(),