From fcc81634265cb40215b530e2e38c71f41cf8d0fc Mon Sep 17 00:00:00 2001 From: Juha Heinanen Date: Fri, 19 Jun 2026 16:47:28 +0300 Subject: [PATCH] Avoid lint warning --- app/src/main/kotlin/com/tutpro/baresip/BaresipService.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/kotlin/com/tutpro/baresip/BaresipService.kt b/app/src/main/kotlin/com/tutpro/baresip/BaresipService.kt index 0eec08b8..f17a377f 100644 --- a/app/src/main/kotlin/com/tutpro/baresip/BaresipService.kt +++ b/app/src/main/kotlin/com/tutpro/baresip/BaresipService.kt @@ -1686,7 +1686,7 @@ class BaresipService: Service() { // Process any calls that arrived while baresip is starting InCallService.instance?.let { inCallService -> - for (call in inCallService.getCalls()) { + for (call in inCallService.calls) { val aor = call.details.intentExtras?.getString("aor") if (Call.ofCallp(call.hashCode().toLong()) == null) { Log.d(TAG, "Processing pending external call ${call.hashCode()}")