mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-23 06:35:51 +00:00
Fix notification service
This commit is contained in:
@@ -6,12 +6,20 @@ public struct AccountBackupData: Codable, Equatable {
|
||||
public var peerId: Int64
|
||||
public var masterDatacenterKey: Data
|
||||
public var masterDatacenterKeyId: Int64
|
||||
public var notificationEncryptionKeyId: Data?
|
||||
|
||||
public init(masterDatacenterId: Int32, peerId: Int64, masterDatacenterKey: Data, masterDatacenterKeyId: Int64) {
|
||||
public init(
|
||||
masterDatacenterId: Int32,
|
||||
peerId: Int64,
|
||||
masterDatacenterKey: Data,
|
||||
masterDatacenterKeyId: Int64,
|
||||
notificationEncryptionKeyId: Data?
|
||||
) {
|
||||
self.masterDatacenterId = masterDatacenterId
|
||||
self.peerId = peerId
|
||||
self.masterDatacenterKey = masterDatacenterKey
|
||||
self.masterDatacenterKeyId = masterDatacenterKeyId
|
||||
self.notificationEncryptionKeyId = notificationEncryptionKeyId
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user