From 4d10b44da59219175e51f6f6795c44c94124fd84 Mon Sep 17 00:00:00 2001 From: Benoit Martins Date: Wed, 29 Jan 2025 16:59:41 +0100 Subject: [PATCH] Fix display of call counter --- Linphone/UI/Main/ContentView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Linphone/UI/Main/ContentView.swift b/Linphone/UI/Main/ContentView.swift index a16502b30..5b5eaae06 100644 --- a/Linphone/UI/Main/ContentView.swift +++ b/Linphone/UI/Main/ContentView.swift @@ -100,7 +100,7 @@ struct ContentView: View { .padding(.leading, 10) if callViewModel.callsCounter > 1 { - Text(String(format: String(localized: "calls_count_label"), callViewModel.callsCounter)) + Text(String(format: String(localized: "calls_count_label"), callViewModel.callsCounter.description)) .default_text_style_white(styleSize: 16) } else { Text("\(callViewModel.displayName)")