Use hex for seed encoding

pull/369/head
Niels Andriesse 3 years ago
parent b9b3a4b584
commit 2e2ed4ea80

@ -117,7 +117,7 @@ final class LinkDeviceVC : BaseVC, UIPageViewControllerDataSource, UIPageViewCon
}
func controller(_ controller: OWSQRCodeScanningViewController, didDetectQRCodeWith string: String) {
guard let seed = string.data(using: .utf8) else { return }
let seed = Data(hex: string)
continueWithSeed(seed)
}

Loading…
Cancel
Save