mirror of
https://github.com/AU-COVIDSafe/mobile-ios.git
synced 2025-05-23 13:45:17 +00:00
COVIDSafe code from version 2.2
This commit is contained in:
parent
9e6e4604ef
commit
682e02ddc9
67 changed files with 3645 additions and 464 deletions
|
@ -316,7 +316,7 @@ typealias BLE_RSSI = Int
|
|||
typealias BLE_TxPower = Int
|
||||
|
||||
class BLEPseudoDeviceAddress {
|
||||
let address: Int
|
||||
let address: Int64
|
||||
let data: Data
|
||||
var description: String { get {
|
||||
return "BLEPseudoDeviceAddress(address=\(address),data=\(data.base64EncodedString()))"
|
||||
|
@ -338,6 +338,6 @@ class BLEPseudoDeviceAddress {
|
|||
guard let longValue = longValueData.int64(0) else {
|
||||
return nil
|
||||
}
|
||||
address = Int(longValue)
|
||||
address = Int64(longValue)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue