From bd49f31df694ef9c0ba933684188c9cdce61d814 Mon Sep 17 00:00:00 2001 From: Juha Heinanen Date: Tue, 19 May 2026 19:32:40 +0300 Subject: [PATCH] Fixed two typos --- app/src/main/kotlin/com/tutpro/baresip/BaresipService.kt | 4 +++- 1 file changed, 3 insertions(+), 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 d5070c2c..4fce3c50 100644 --- a/app/src/main/kotlin/com/tutpro/baresip/BaresipService.kt +++ b/app/src/main/kotlin/com/tutpro/baresip/BaresipService.kt @@ -457,6 +457,7 @@ class BaresipService: Service() { if (!file.exists() && a != "config") { Log.i(TAG, "Copying asset '$a'") Utils.copyAssetToFile(this, a, "$filesPath/$a") + } else Log.i(TAG, "Asset '$a' already copied") if (a == "config") @@ -915,7 +916,7 @@ class BaresipService: Service() { ) else if (ua.account.blockUnknown && Contact.contactName(peerUri) == peerUri) String.format( - getString(R.string.call_blocked), + getString(R.string.call_blocked), Utils.friendlyUri(this, peerUri, ua.account) ) else if (!Utils.checkPermissions(this, arrayOf(RECORD_AUDIO))) @@ -1223,6 +1224,7 @@ class BaresipService: Service() { "Could not delete temporary raw files after merge: ${e.message}" ) } + } else { Log.e( TAG,