diff --git a/submodules/AuthorizationUI/Sources/AuthorizationSequencePaymentScreen.swift b/submodules/AuthorizationUI/Sources/AuthorizationSequencePaymentScreen.swift index 1f35a72415..2a8cb120f8 100644 --- a/submodules/AuthorizationUI/Sources/AuthorizationSequencePaymentScreen.swift +++ b/submodules/AuthorizationUI/Sources/AuthorizationSequencePaymentScreen.swift @@ -178,7 +178,10 @@ final class AuthorizationSequencePaymentScreenComponent: Component { let mnc = carrier.mobileNetworkCode ?? "none" let errorString: String = "\(errorCode): \(errorText)" - AuthorizationSequenceController.presentEmailComposeController(address: component.supportEmailAddress, subject: component.supportEmailSubject, body: presentationData.strings.Login_PhoneGenericEmailBody(formattedNumber, errorString, appVersion, systemVersion, locale, mnc).string, from: controller, presentationData: presentationData) + var body = presentationData.strings.Login_PhoneGenericEmailBody(formattedNumber, errorString, appVersion, systemVersion, locale, mnc).string + body.append("\n#paidauth") + + AuthorizationSequenceController.presentEmailComposeController(address: component.supportEmailAddress, subject: component.supportEmailSubject, body: body, from: controller, presentationData: presentationData) }) ] ) diff --git a/submodules/ChatListUI/Sources/ChatListController.swift b/submodules/ChatListUI/Sources/ChatListController.swift index 8d8254d63d..305098f2d9 100644 --- a/submodules/ChatListUI/Sources/ChatListController.swift +++ b/submodules/ChatListUI/Sources/ChatListController.swift @@ -5365,12 +5365,12 @@ public class ChatListControllerImpl: TelegramBaseController, ChatListController if case .broadcast = channel.info { canClear = false deleteTitle = strongSelf.presentationData.strings.Channel_LeaveChannel - if channel.flags.contains(.isCreator) { + if channel.addressName == nil && channel.flags.contains(.isCreator) { canRemoveGlobally = true } } else { deleteTitle = strongSelf.presentationData.strings.Group_DeleteGroup - if channel.flags.contains(.isCreator) { + if channel.addressName == nil && channel.flags.contains(.isCreator) { canRemoveGlobally = true } }