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;
});
try {
final key = _recoveryKeyTextEditingController.text;
await bootstrap.newSsssKey.unlock(
keyOrPassphrase:
_recoveryKeyTextEditingController.text,
keyOrPassphrase: key,
);
await bootstrap.client.encryption.crossSigning
.selfSign(
keyOrPassphrase: key,
);
await bootstrap.openExistingSsss();
} catch (e, s) {