mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2024-11-17 14:19:16 +00:00
fix: dialogs during server setup
This commit is contained in:
parent
53e72504f7
commit
c87b834550
|
@ -724,10 +724,10 @@ class ServerInstallationCubit extends Cubit<ServerInstallationState> {
|
|||
|
||||
@override
|
||||
void onChange(final Change<ServerInstallationState> change) {
|
||||
if (change.currentState.installationDialoguePopUp != null &&
|
||||
if (change.nextState.installationDialoguePopUp != null &&
|
||||
change.currentState.installationDialoguePopUp !=
|
||||
state.installationDialoguePopUp) {
|
||||
final branching = change.currentState.installationDialoguePopUp;
|
||||
change.nextState.installationDialoguePopUp) {
|
||||
final branching = change.nextState.installationDialoguePopUp;
|
||||
showPopUpAlert(
|
||||
alertTitle: branching!.title,
|
||||
description: branching.description,
|
||||
|
|
Loading…
Reference in a new issue