Merge pull request #67 from FRE-Informatica/fix/fd-943

FIX/FD-943 - Chamada do ChangeNotifica ao ativar\desativar notificação de acesso
This commit is contained in:
Ivan Antunes 2024-11-08 11:27:48 -03:00 committed by GitHub
commit c675d582b8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ class PreferencesPageModel with ChangeNotifier {
onConfirm() async {
String content;
String value = !isNotify ? 'N' : 'S';
String value = !isNotify ? 'S' : 'N';
await PhpGroup.changeNotifica
.call(notifica: value)
.then((value) async {