Fix build

This commit is contained in:
Ilya Laktyushin 2023-08-26 16:45:10 +04:00
parent a1ba5cca74
commit 6f49c7e600

View File

@ -513,7 +513,7 @@ public extension TelegramEngine {
}
public func allowBotSendMessages(botId: PeerId) -> Signal<Never, NoError> {
return _internal_allowBotSendMessages(postbox: self.account.postbox, network: self.account.network, stateManager: self.account.stateManager, sbotId: botId)
return _internal_allowBotSendMessages(postbox: self.account.postbox, network: self.account.network, stateManager: self.account.stateManager, botId: botId)
}
public func invokeBotCustomMethod(botId: PeerId, method: String, params: String) -> Signal<String, InvokeBotCustomMethodError> {