This commit is contained in:
Isaac 2026-03-25 00:40:04 +08:00
parent f48617fbec
commit 90844063f7
2 changed files with 5 additions and 1 deletions

View file

@ -63,7 +63,7 @@ final class TextProcessingTranslateContentComponent: Component {
fileprivate(set) var nonPremiumFloodTriggered: Bool = false {
didSet {
if self.isProcessing != oldValue {
if self.nonPremiumFloodTriggered != oldValue {
self.nonPremiumFloodTriggeredUpdated?(self.nonPremiumFloodTriggered)
}
}

View file

@ -2354,6 +2354,10 @@ public final class WebAppController: ViewController, AttachmentContainable {
navigationController.pushViewController(createBotScreen)
}
}
case let .channel(channel):
if channel.isCreator {
}
default:
break
}