diff --git a/submodules/PeerInfoUI/Sources/ChannelVisibilityController.swift b/submodules/PeerInfoUI/Sources/ChannelVisibilityController.swift index 0db2d80fd6..478b46d720 100644 --- a/submodules/PeerInfoUI/Sources/ChannelVisibilityController.swift +++ b/submodules/PeerInfoUI/Sources/ChannelVisibilityController.swift @@ -465,8 +465,10 @@ private func channelVisibilityControllerEntries(presentationData: PresentationDa selectedType = .publicChannel } else if let cachedChannelData = view.cachedData as? CachedChannelData, cachedChannelData.peerGeoLocation != nil { selectedType = .publicChannel - } else { + } else if case .initialSetup = mode { selectedType = .publicChannel + } else { + selectedType = .privateChannel } } }