[skip ci]

This commit is contained in:
overtake
2020-03-09 12:11:07 +01:00
parent d6243fb78b
commit 4c095a8da3
3 changed files with 5 additions and 10 deletions

View File

@@ -28,7 +28,7 @@ public let telegramPostboxSeedConfiguration: SeedConfiguration = {
return .nonContact
}
} else if let _ = peer as? TelegramGroup {
return .smallGroup
return .group
} else if let _ = peer as? TelegramSecretChat {
return .nonContact
} else if let channel = peer as? TelegramChannel {
@@ -37,9 +37,9 @@ public let telegramPostboxSeedConfiguration: SeedConfiguration = {
return .channel
case .group:
if channel.username != nil {
return .largeGroup
return .group
} else {
return .smallGroup
return .group
}
}
} else {