mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2025-01-09 09:31:13 +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
|
@override
|
||||||
void onChange(final Change<ServerInstallationState> change) {
|
void onChange(final Change<ServerInstallationState> change) {
|
||||||
if (change.currentState.installationDialoguePopUp != null &&
|
if (change.nextState.installationDialoguePopUp != null &&
|
||||||
change.currentState.installationDialoguePopUp !=
|
change.currentState.installationDialoguePopUp !=
|
||||||
state.installationDialoguePopUp) {
|
change.nextState.installationDialoguePopUp) {
|
||||||
final branching = change.currentState.installationDialoguePopUp;
|
final branching = change.nextState.installationDialoguePopUp;
|
||||||
showPopUpAlert(
|
showPopUpAlert(
|
||||||
alertTitle: branching!.title,
|
alertTitle: branching!.title,
|
||||||
description: branching.description,
|
description: branching.description,
|
||||||
|
|
Loading…
Reference in a new issue