|
|
@ -5,6 +5,10 @@
|
|
|
|
import Foundation
|
|
|
|
import Foundation
|
|
|
|
import PromiseKit
|
|
|
|
import PromiseKit
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* Transmits our profile key to any linked devices.
|
|
|
|
|
|
|
|
* This is accomplished via the existing contact syncing mechanism, except the only contact synced is ourself.
|
|
|
|
|
|
|
|
*/
|
|
|
|
@objc class MultiDeviceProfileKeyUpdateJob: NSObject {
|
|
|
|
@objc class MultiDeviceProfileKeyUpdateJob: NSObject {
|
|
|
|
|
|
|
|
|
|
|
|
let TAG = "[MultiDeviceProfileKeyUpdateJob]"
|
|
|
|
let TAG = "[MultiDeviceProfileKeyUpdateJob]"
|
|
|
@ -43,7 +47,6 @@ import PromiseKit
|
|
|
|
in: syncContactsMessage,
|
|
|
|
in: syncContactsMessage,
|
|
|
|
success: {
|
|
|
|
success: {
|
|
|
|
Logger.info("\(self.TAG) Successfully synced profile key")
|
|
|
|
Logger.info("\(self.TAG) Successfully synced profile key")
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
},
|
|
|
|
failure: { error in
|
|
|
|
failure: { error in
|
|
|
|
Logger.error("\(self.TAG) in \(#function) failed with error: \(error) retrying in \(retryDelay)s.")
|
|
|
|
Logger.error("\(self.TAG) in \(#function) failed with error: \(error) retrying in \(retryDelay)s.")
|
|
|
|