From 62854c57c7b96e21840f95968645b7ef0924402a Mon Sep 17 00:00:00 2001 From: Ryan ZHAO <> Date: Wed, 12 Jun 2024 14:45:47 +1000 Subject: [PATCH] fix recovery password qr code --- Session/Settings/RecoveryPasswordScreen.swift | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Session/Settings/RecoveryPasswordScreen.swift b/Session/Settings/RecoveryPasswordScreen.swift index d3777b2e6..828f583b4 100644 --- a/Session/Settings/RecoveryPasswordScreen.swift +++ b/Session/Settings/RecoveryPasswordScreen.swift @@ -11,6 +11,7 @@ struct RecoveryPasswordScreen: View { @State private var copied: Bool = false @State private var showQRCode: Bool = false private let mnemonic: String + private let hexEncodedSeed: String? static private let cornerRadius: CGFloat = 13 static private let backgroundCornerRadius: CGFloat = 17 @@ -18,10 +19,12 @@ struct RecoveryPasswordScreen: View { public init() throws { self.mnemonic = try Identity.mnemonic() + self.hexEncodedSeed = Identity.fetchHexEncodedSeed() } public init(hardcode: String) { self.mnemonic = hardcode + self.hexEncodedSeed = try? Mnemonic.decode(mnemonic: hardcode) } var body: some View { @@ -74,7 +77,7 @@ struct RecoveryPasswordScreen: View { if self.showQRCode { QRCodeView( - string: mnemonic, + string: hexEncodedSeed ?? "", hasBackground: false, logo: "SessionShieldFilled", themeStyle: ThemeManager.currentTheme.interfaceStyle