Merge commit '70b56b9151537a9e13043ed3209894d536a37551'

This commit is contained in:
Ilya Laktyushin
2022-08-18 04:04:52 +03:00
13 changed files with 68 additions and 52 deletions

View File

@@ -151,10 +151,12 @@ public struct ChatControllerInitialBotStart {
public struct ChatControllerInitialAttachBotStart {
public let botId: PeerId
public let payload: String?
public let justInstalled: Bool
public init(botId: PeerId, payload: String?) {
public init(botId: PeerId, payload: String?, justInstalled: Bool) {
self.botId = botId
self.payload = payload
self.justInstalled = justInstalled
}
}