From f2143b7df43c33aba44bb55960ed255f35b8f13c Mon Sep 17 00:00:00 2001 From: stcb <21@stcb.cc> Date: Sun, 26 Jan 2025 14:31:26 +0200 Subject: [PATCH] Fixed Details name printing --- 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 46367ba..b8c0567 100644 --- a/dialer/lib/features/history/history_page.dart +++ b/dialer/lib/features/history/history_page.dart @@ -375,7 +375,7 @@ class CallDetailsPage extends StatelessWidget { const SizedBox(width: 16), Expanded( child: Text( - contact.displayName, + _obfuscateService.obfuscateData(contact.displayName), style: const TextStyle(color: Colors.white, fontSize: 24), ), ),