Decode the recovery key into hex instead of base64
This commit is contained in:
parent
37db940720
commit
0965b367cc
1 changed files with 1 additions and 1 deletions
|
@ -48,7 +48,7 @@ class AccountSectionWidget extends StatelessWidget {
|
|||
String recoveryKey;
|
||||
try {
|
||||
recoveryKey =
|
||||
Sodium.bin2base64(Configuration.instance.getRecoveryKey());
|
||||
Sodium.bin2hex(Configuration.instance.getRecoveryKey());
|
||||
} catch (e) {
|
||||
showGenericErrorDialog(context);
|
||||
return;
|
||||
|
|
Loading…
Add table
Reference in a new issue