1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-11-22 04:49:21 +00:00

Fix issue

This commit is contained in:
Pierre HUBERT 2021-04-17 19:23:06 +02:00
parent 116e6ce66d
commit eeefaf87f3

View File

@ -78,7 +78,7 @@ class PushNotificationsConfigurationWidget extends StatefulWidget {
const PushNotificationsConfigurationWidget({
Key key,
@required this.onConfigured,
this.onChanged,
@required this.onChanged,
}) : super(key: key);
@override
@ -101,6 +101,8 @@ class PushNotificationsConfigurationWidgetState
if (currStatus == PushNotificationsStatus.UNDEFINED &&
srvConfig.notificationsPolicy.hasFirebase)
currStatus = PushNotificationsStatus.FIREBASE;
widget.onChanged();
}
@override