mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2025-02-17 14:30:40 +01:00
fix: Self sign while bootstrap
This commit is contained in:
parent
fd49b559a9
commit
d20a5c30ac
@ -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) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user