Revert "refactor: Avoid unnecessary bool comparison"
This reverts commit 1cd3a91037.
This commit is contained in:
parent
84993dec59
commit
a9a8b39465
14 changed files with 24 additions and 22 deletions
|
|
@ -161,7 +161,8 @@ class BootstrapDialogState extends State<BootstrapDialog> {
|
|||
Widget body = const Center(child: CircularProgressIndicator.adaptive());
|
||||
titleText = L10n.of(context).loadingPleaseWait;
|
||||
|
||||
if (bootstrap.newSsssKey?.recoveryKey != null && _recoveryKeyStored) {
|
||||
if (bootstrap.newSsssKey?.recoveryKey != null &&
|
||||
_recoveryKeyStored == false) {
|
||||
final key = bootstrap.newSsssKey!.recoveryKey;
|
||||
titleText = L10n.of(context).recoveryKey;
|
||||
return LoginScaffold(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue