fix: Self sign while bootstrap

This commit is contained in:
Krille Fear 2021-11-18 21:21:12 +01:00
parent fd49b559a9
commit d20a5c30ac

View File

@ -208,9 +208,13 @@ class _BootstrapDialogState extends State<BootstrapDialog> {
_recoveryKeyInputLoading = true; _recoveryKeyInputLoading = true;
}); });
try { try {
final key = _recoveryKeyTextEditingController.text;
await bootstrap.newSsssKey.unlock( await bootstrap.newSsssKey.unlock(
keyOrPassphrase: keyOrPassphrase: key,
_recoveryKeyTextEditingController.text, );
await bootstrap.client.encryption.crossSigning
.selfSign(
keyOrPassphrase: key,
); );
await bootstrap.openExistingSsss(); await bootstrap.openExistingSsss();
} catch (e, s) { } catch (e, s) {