From b042a68a8e2bc6ec930bb5274e56e87629959e99 Mon Sep 17 00:00:00 2001 From: Florian Griffon Date: Tue, 4 Mar 2025 14:23:02 +0100 Subject: [PATCH] fix: makeGsmCall in historypage --- dialer/lib/features/history/history_page.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dialer/lib/features/history/history_page.dart b/dialer/lib/features/history/history_page.dart index 117d1e8..2ce20b8 100644 --- a/dialer/lib/features/history/history_page.dart +++ b/dialer/lib/features/history/history_page.dart @@ -419,7 +419,7 @@ class _HistoryPageState extends State icon: const Icon(Icons.phone, color: Colors.green), onPressed: () async { if (contact.phones.isNotEmpty) { - _callService.makeGsmCall(contact.phones.first.number); + _callService.makeGsmCall(context, phoneNumber: contact.phones.first.number); } else { ScaffoldMessenger.of(context).showSnackBar( const SnackBar(