Skip to content

Commit

Permalink
Ajustar a extração de dados da farmácia e simplificar a mensagem de n…
Browse files Browse the repository at this point in the history
…otificação de produto disponível
  • Loading branch information
Polabiel committed Sep 16, 2024
1 parent 99a74a0 commit c75cd11
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/api/repositories/pharmacy_repository.dart
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class PharmacyRepository implements IPharmacy {
Future<PharmacyModels> getPharmacyById(int id) async {
var response = await repositoryHttpClient.client.get('/pharmacy/$id');

PharmacyModels model = PharmacyModels.fromJson(response.data);
PharmacyModels model = PharmacyModels.fromJson(response.data["pharmacy"]);

return model;
}
Expand Down
2 changes: 1 addition & 1 deletion lib/api/services/socket_client_service.dart
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ void onStart(ServiceInstance service) async {
await NotificationService.showNotification(
0, // ID da notificação
'Produto Disponível', // Título da notificação
'Um novo produto está disponível: ${product.name} na farmácia ${pharmacy.name}', // Corpo da notificação
'${product.name} disponível na farmácia ${pharmacy.name}', // Corpo da notificação
);
});

Expand Down

0 comments on commit c75cd11

Please sign in to comment.